From cdb35ecaded9d5fdf684c96a75e0228bf84b64c5 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Thu, 12 Aug 2021 22:43:53 +0200 Subject: [PATCH] Update feature list --- tasmota/support_features.ino | 4 +++- tools/decode-status.py | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/tasmota/support_features.ino b/tasmota/support_features.ino index eee70f96d..a73b9d9d9 100644 --- a/tasmota/support_features.ino +++ b/tasmota/support_features.ino @@ -759,7 +759,9 @@ void ResponseAppendFeatures(void) #ifdef USE_WIFI_RANGE_EXTENDER feature8 |= 0x00000400; // xdrv_58_range_extender.ino #endif -// feature8 |= 0x00000800; +#ifdef USE_INFLUXDB + feature8 |= 0x00000800; // xsns_90_influxdb.ino +#endif // feature8 |= 0x00001000; // feature8 |= 0x00002000; diff --git a/tools/decode-status.py b/tools/decode-status.py index 32a340059..b2f54a711 100755 --- a/tools/decode-status.py +++ b/tools/decode-status.py @@ -255,7 +255,7 @@ a_features = [[ ],[ "USE_MPU_ACCEL","USE_TFMINIPLUS","USE_CSE7761","USE_BERRY", "USE_BM8563","USE_ENERGY_DUMMY","USE_AM2320","USE_T67XX", - "USE_MCP2515","USE_TASMESH","USE_WIFI_RANGE_EXTENDER","", + "USE_MCP2515","USE_TASMESH","USE_WIFI_RANGE_EXTENDER","USE_INFLUXDB", "","","","", "","","","", "","","","", @@ -288,7 +288,7 @@ else: obj = json.load(fp) def StartDecode(): - print ("\n*** decode-status.py v20210802 by Theo Arends and Jacek Ziolkowski ***") + print ("\n*** decode-status.py v20210812 by Theo Arends and Jacek Ziolkowski ***") # print("Decoding\n{}".format(obj))