Remove cruft
This commit is contained in:
parent
553d386352
commit
af5ff43523
|
@ -72,16 +72,9 @@
|
|||
// Define bluetooth scan parameters
|
||||
#define BLE_ACTIVE_SCAN true // Active scan uses more power, but get results faster
|
||||
|
||||
#define BLE_SCAN_DURATION 3 // Define the duration of a single scan in seconds
|
||||
#define BLE_SCAN_INTERVAL 340 // Used to determine antenna sharing between Bluetooth and WiFi. Do not modify unless you are confident you know what you're doing
|
||||
#define BLE_SCAN_WINDOW 320 // Used to determine antenna sharing between Bluetooth and WiFi. Do not modify unless you are confident you know what you're doing
|
||||
|
||||
// Maximum distance (in meters) to report. Devices that are calculated to be further than this distance in meters will not be reported
|
||||
#define MAX_DISTANCE 16
|
||||
|
||||
//List of allowed MAC Addresses for MQTT Publish. All others will be ignored.
|
||||
//Feature is disabled by default.
|
||||
//#define ALLOWED_LIST_CHECK
|
||||
String allowedList[] = {"11223344aabb", "11223344aabb"};
|
||||
uint32_t allowedListNumberOfItems = 2;
|
||||
|
||||
|
|
|
@ -116,8 +116,6 @@ bool sendTelemetry(int totalSeen = -1, int totalReported = -1, int totalAdverts
|
|||
tele["room"] = room;
|
||||
tele["ip"] = localIp;
|
||||
tele["hostname"] = WiFi.getHostname();
|
||||
tele["scan_dur"] = BLE_SCAN_DURATION;
|
||||
tele["max_dist"] = MAX_DISTANCE;
|
||||
tele["uptime"] = getUptimeSeconds();
|
||||
tele["firm"] = String(FIRMWARE);
|
||||
|
||||
|
|
Loading…
Reference in New Issue