mirror of
https://github.com/OMGeeky/flucto-heisskleber.git
synced 2026-02-23 15:38:33 +01:00
12 lines
222 B
Python
12 lines
222 B
Python
from dataclasses import dataclass
|
|
|
|
from heisskleber.config import BaseConf
|
|
|
|
|
|
@dataclass
|
|
class SerialConf(BaseConf):
|
|
port: str = "/dev/serial0"
|
|
baudrate: int = 9600
|
|
bytesize: int = 8
|
|
encoding: str = "ascii"
|