Restore safety cutoff to 800F, faster PID loop timing, enhanced simple UI with stats/charts/flight controls, compact TTY display

This commit is contained in:
2026-03-13 00:36:10 +00:00
parent 2853fa3f8a
commit 24c57beda8
11 changed files with 486 additions and 133 deletions
+9 -9
View File
@@ -21,8 +21,8 @@ DEFAULT_CONFIG = {
},
"control": {
"setpoint": 530,
"loop_size_ms": 3000,
"sleep_time": 0.4,
"loop_size_ms": 1800,
"sleep_time": 0.2,
"enabled": False
},
"flight": {
@@ -40,7 +40,7 @@ DEFAULT_CONFIG = {
]
},
"safety": {
"max_temp_f": 750,
"max_temp_f": 800,
"spike_threshold_f": 50.0,
"idle_shutoff_minutes": 30,
"watchdog_timeout_s": 10,
@@ -84,8 +84,8 @@ DEFAULT_CONFIG = {
},
"control": {
"setpoint": 530,
"loop_size_ms": 3000,
"sleep_time": 0.4,
"loop_size_ms": 1800,
"sleep_time": 0.2,
"enabled": False
},
"flight": {
@@ -103,7 +103,7 @@ DEFAULT_CONFIG = {
]
},
"safety": {
"max_temp_f": 750,
"max_temp_f": 800,
"spike_threshold_f": 50.0,
"idle_shutoff_minutes": 30,
"watchdog_timeout_s": 10,
@@ -137,8 +137,8 @@ DEFAULT_CONFIG = {
},
"control": {
"setpoint": 530,
"loop_size_ms": 3000,
"sleep_time": 0.4,
"loop_size_ms": 1800,
"sleep_time": 0.2,
"enabled": False
},
"flight": {
@@ -156,7 +156,7 @@ DEFAULT_CONFIG = {
]
},
"safety": {
"max_temp_f": 750,
"max_temp_f": 800,
"spike_threshold_f": 50.0,
"idle_shutoff_minutes": 30,
"watchdog_timeout_s": 10,