Remove cruft

This commit is contained in:
DTTerastar 2021-03-29 22:53:38 -04:00
parent 553d386352
commit af5ff43523
2 changed files with 0 additions and 9 deletions

View File

@ -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;

View File

@ -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);