mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 01:17:42 +01:00
14 lines
No EOL
185 B
Python
14 lines
No EOL
185 B
Python
class Sensor():
|
|
|
|
def __init__(self):
|
|
self.id = "";
|
|
self.name = ""
|
|
|
|
def on(self):
|
|
pass
|
|
|
|
def off(self):
|
|
pass
|
|
|
|
def state(self):
|
|
pass |