First commit

This commit is contained in:
2025-03-11 13:05:11 +01:00
commit 9ce295f085
14 changed files with 2491 additions and 0 deletions

17
devicelist.py Normal file
View File

@@ -0,0 +1,17 @@
'''
Platzhalter WIP
- ausprogrammieren nach Bedarf
Geräteliste
- wird regelmäßig aktualisiert
'''
class DeviceList():
def __init__(self):
self.devices = list()
def print(self):
for d in self.devicelist:
print(d)