Script execution

This commit is contained in:
2020-01-22 14:22:31 +01:00
parent 9dedd90b8f
commit 9b8dc2e17e

View File

@@ -0,0 +1,9 @@
class TestDev(DeviceBase):
def doSomething(self):
self.setCache("VALUE", -1)
dev = TestDev("Test")
dev.initialize()
dev.doSomething()
print dev.take()