Script execution

This commit is contained in:
2020-01-21 16:32:04 +01:00
parent 46c871f5ac
commit 9dedd90b8f

9
script/test/TestFinal.py Normal file
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()