Skip to content

Commit

Permalink
[BT] Enable to define MinimumRSSI from a macro in ini files (#1977)
Browse files Browse the repository at this point in the history
  • Loading branch information
1technophile committed Jun 21, 2024
1 parent 9af5a2a commit 2d5b8b4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion main/config_BT.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ extern String stateBTMeasures(bool);
# define BLE_FILTER_CONNECTABLE 0 // Sets whether to filter publishing of scanned devices that require a connection.
#endif // Setting this to 1 prevents overwriting the publication of the device connection data with the advertised data (Recommended for use with OpenHAB).

#define MinimumRSSI -100 //default minimum rssi value, all the devices below -100 will not be reported
#ifndef MinimumRSSI
# define MinimumRSSI -100 //default minimum rssi value, all the devices below -100 will not be reported
#endif

#ifndef Scan_duration
# define Scan_duration 10000 //define the duration for a scan; in milliseconds
Expand Down

0 comments on commit 2d5b8b4

Please sign in to comment.