Script execution

This commit is contained in:
gac-x04sa
2019-08-21 09:32:33 +02:00
parent 5dac3725dd
commit c75373c5d4

View File

@@ -139,8 +139,8 @@ class Image(DeviceBase, Readable):
if threshold4 is not None:
self.threshold4 = threshold4
def init_threshold():
self.threshold1, tself.threshold2, self.threshold3, self.threshold4 = self.pixel.threshold1, self.pixel.threshold2, self.pixel.threshold3, self.pixel.threshold4
def init_threshold(self):
self.threshold1, self.threshold2, self.threshold3, self.threshold4 = self.pixel.threshold1, self.pixel.threshold2, self.pixel.threshold3, self.pixel.threshold4
class ReadableImage(ReadableMatrix):