Add Python sender for Raspberry Pi Zero

This commit is contained in:
2023-07-13 14:06:28 -04:00
parent 4b8389be3e
commit 694c65bd87
6 changed files with 98 additions and 1 deletions

6
DeviceStatus/Sender/device.py Executable file
View File

@@ -0,0 +1,6 @@
class Device:
last_status = 0
def __init__(self, name, pin):
self.name = name
self.pin = pin