remove extraneous print

This commit is contained in:
Mike Kinney
2021-12-24 13:02:49 -08:00
parent 901be0ae04
commit c9ff1d9ad0

View File

@@ -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