mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 01:17:42 +01:00
18 lines
No EOL
263 B
Python
18 lines
No EOL
263 B
Python
__all__ = ["CBPiActor"]
|
|
|
|
import logging
|
|
|
|
from core.api.extension import CBPiExtension
|
|
|
|
logger = logging.getLogger(__file__)
|
|
|
|
class CBPiActor(CBPiExtension):
|
|
|
|
def on(self, power):
|
|
pass
|
|
|
|
def off(self):
|
|
pass
|
|
|
|
def state(self):
|
|
pass |