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