Add plugins to conf_wrapper.py

newFW
mate71pl 2024-07-14 23:01:24 +02:00
rodzic 4787e6c71b
commit 4859d30fbe
2 zmienionych plików z 21 dodań i 4 usunięć

Wyświetl plik

@ -49,9 +49,25 @@ nodes_plugin_active = os.environ.get('NODES_PLUGIN_ACTIVE')
if nodes_plugin_active:
plugins_config["nodes"] = {"active": nodes_plugin_active.lower() == "true"}
nodes_plugin_active = os.environ.get('CHUTILZ_PLUGIN_ACTIVE')
if nodes_plugin_active:
plugins_config["chutilz"] = {"active": chutilz_plugin_active.lower() == "true"}
chutilz_plugin_active = os.environ.get('CHUTILZ_PLUGIN_ACTIVE')
if chutilz_plugin_active:
plugins_config["chutilz"] = {"active": chutilz_plugin_active.lower() == "true"}
airutilz_plugin_active = os.environ.get('AIRUTILZ_PLUGIN_ACTIVE')
if airutilz_plugin_active:
plugins_config["airutilz"] = {"active": airutilz_plugin_active.lower() == "true"}
battery_plugin_active = os.environ.get('BATTERY_PLUGIN_ACTIVE')
if battery_plugin_active:
plugins_config["battery"] = {"active": battery_plugin_active.lower() == "true"}
voltage_plugin_active = os.environ.get('VOLTAGE_PLUGIN_ACTIVE')
if voltage_plugin_active:
plugins_config["voltage"] = {"active": voltage_plugin_active.lower() == "true"}
snr_plugin_active = os.environ.get('SNR_PLUGIN_ACTIVE')
if snr_plugin_active:
plugins_config["snr"] = {"active": snr_plugin_active.lower() == "true"}
# Add the plugins dictionary to the relay_config if it's not empty
if plugins_config:
@ -60,3 +76,4 @@ if plugins_config:
# Write the configuration to config.yaml
with open("config.yaml", "w") as f:
yaml.dump(relay_config, f)

@ -1 +1 @@
Subproject commit 25bada2cb62cdc2e3ee77413577a4d68760c6513
Subproject commit 46021e9eae5c6ae87bbb4cf99a00fee3610a49e9