fix: handle Bambu connection state by introducing bambuDisabled flag

This commit is contained in:
2025-03-27 11:18:04 +01:00
parent e040a736b0
commit 024056cb7d
2 changed files with 3 additions and 4 deletions

View File

@@ -100,7 +100,7 @@ void loop() {
// Wenn Bambu auto set Spool aktiv
if (autoSendToBambu && autoSetToBambuSpoolId > 0)
{
if (!bambu_connected)
if (!bambuDisabled && !bambu_connected)
{
bambu_restart();
}