From c9ff1d9ad05f7f2544b82bf06638bde26a210613 Mon Sep 17 00:00:00 2001 From: Mike Kinney Date: Fri, 24 Dec 2021 13:02:49 -0800 Subject: [PATCH] remove extraneous print --- meshtastic/remote_hardware.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/remote_hardware.py b/meshtastic/remote_hardware.py index 499c564..59286c4 100644 --- a/meshtastic/remote_hardware.py +++ b/meshtastic/remote_hardware.py @@ -12,7 +12,7 @@ def onGPIOreceive(packet, interface): logging.debug(f"packet:{packet} interface:{interface}") hw = packet["decoded"]["remotehw"] gpioValue = hw["gpioValue"] - print(f'mask:{interface.mask}') + #print(f'mask:{interface.mask}') value = int(gpioValue) & int(interface.mask) print(f'Received RemoteHardware typ={hw["typ"]}, gpio_value={gpioValue} value={value}') interface.gotResponse = True