From 990da631050d1bf3af0658190cadeb34d504ff8e Mon Sep 17 00:00:00 2001 From: ndrsnhs Date: Fri, 22 May 2026 10:46:16 +0200 Subject: [PATCH] add inverter and bat to component_factory --- packages/modules/devices/algodue/algodue/device.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/modules/devices/algodue/algodue/device.py b/packages/modules/devices/algodue/algodue/device.py index 08821584c3..e1f3ce1a6f 100644 --- a/packages/modules/devices/algodue/algodue/device.py +++ b/packages/modules/devices/algodue/algodue/device.py @@ -45,7 +45,9 @@ def initializer(): device_config=device_config, initializer=initializer, component_factory=ComponentFactoryByType( - counter=create_counter_component + counter=create_counter_component, + inverter=create_inverter_component, + bat=create_bat_component ), component_updater=MultiComponentUpdater(update_components) )