mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-14 09:59:13 -05:00
6 lines
117 B
Python
Executable File
6 lines
117 B
Python
Executable File
class Device:
|
|
last_status = 0
|
|
|
|
def __init__(self, name, pin):
|
|
self.name = name
|
|
self.pin = pin |