Sending updates to external screen + RGB LCD
This commit is contained in:
+2
-2
@@ -9,11 +9,11 @@ import shared.safeQueue as safeQueue
|
||||
import shared.alerts as alerts
|
||||
try:
|
||||
import shared.lora_device as lora_device
|
||||
except ImportError:
|
||||
except (ImportError, SyntaxError):
|
||||
pass # No need
|
||||
try:
|
||||
import shared.uart_comm as uart_comm
|
||||
except ImportError:
|
||||
except (ImportError, SyntaxError):
|
||||
pass # No need as we are on the RPI
|
||||
import shared.sensors
|
||||
|
||||
|
||||
@@ -439,6 +439,7 @@ def get_lora_device(port_or_pins=None):
|
||||
class LoraCommands:
|
||||
PING = "ping"
|
||||
COOKING_STATE_UPDATE = "cooking_state_update"
|
||||
COOKING_UPDATE = "cooking_update"
|
||||
TOGGLE_PAUSE = "toggle_pause"
|
||||
TOGGLE_DEFROST = "toggle_defrost"
|
||||
NEW_ALERT = "new_alert"
|
||||
Reference in New Issue
Block a user