Add support for BLE temp sensors

This commit is contained in:
Menno de Graaf
2023-12-08 10:32:58 +01:00
parent dbcca514b0
commit 5ecbddc929
6 changed files with 93 additions and 6 deletions

View File

@@ -72,9 +72,10 @@ struct Settings {
} outdoor;
struct {
// 1 - manual, 2 - ds18b20
// 1 - manual, 2 - ds18b20, 3 - ble
byte type = 1;
byte pin = SENSOR_INDOOR_PIN_DEFAULT;
char bleAddresss[18];
float offset = 0.0f;
} indoor;
} sensors;