mirror of
https://github.com/Rhinemann/IoT-Systems.git
synced 2026-03-14 20:50:39 +02:00
8 lines
94 B
Python
8 lines
94 B
Python
|
|
from dataclasses import dataclass
|
||
|
|
|
||
|
|
@dataclass
|
||
|
|
class Accelerometer:
|
||
|
|
x: int
|
||
|
|
y: int
|
||
|
|
z: int
|