mirror of
https://github.com/janishutz/BiogasControllerApp.git
synced 2025-11-25 13:54:24 +00:00
Begin rewrite
This commit is contained in:
22
biogascontrollerapp/lib/instructions.py
Normal file
22
biogascontrollerapp/lib/instructions.py
Normal file
@@ -0,0 +1,22 @@
|
||||
from typing import Optional
|
||||
import lib.com
|
||||
import lib.decoder
|
||||
|
||||
# TODO: Load filters (for comport search)
|
||||
com = lib.com.Com()
|
||||
decoder = lib.decoder.Decoder()
|
||||
|
||||
class Instructions:
|
||||
def __init__(self) -> None:
|
||||
pass
|
||||
|
||||
def _hook(self, instruction: str, sequence: list[str]) -> bool:
|
||||
return False
|
||||
|
||||
def change_temperature(self, new_temps: list[float]) -> None:
|
||||
pass
|
||||
|
||||
def change_config(self, new_config: list[float]) -> None:
|
||||
pass
|
||||
|
||||
|
||||
Reference in New Issue
Block a user