mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 01:17:42 +01:00
17 lines
No EOL
249 B
Python
17 lines
No EOL
249 B
Python
from core.api.extension import CBPiExtension
|
|
|
|
|
|
class CBPiSensor(CBPiExtension):
|
|
|
|
def __init__(self):
|
|
self.id = "";
|
|
self.name = ""
|
|
|
|
def on(self):
|
|
pass
|
|
|
|
def off(self):
|
|
pass
|
|
|
|
def state(self):
|
|
pass |