Get test library running

This commit is contained in:
2025-06-15 12:01:59 +02:00
parent b00466c5dd
commit b01232b552
5 changed files with 165 additions and 48 deletions

View File

@@ -58,6 +58,8 @@ class ProgramScreen(Screen):
# Add it to the config
config.append(config_sensor_i)
self._set_ui(config)
else:
TwoActionPopup().open(
"Failed to connect to micro-controller, retry?",
@@ -100,8 +102,9 @@ class ProgramScreen(Screen):
else:
try:
self._instructions.change_config(data)
except:
except Exception as e:
SingleRowPopup().open("Could not save data!")
return
SingleRowPopup().open("Data saved successfully")