first talk to Dieter hardware device interface

This commit is contained in:
uhi22 2022-12-12 08:26:18 +01:00
parent cdbd639c94
commit 132e71f16d

View file

@ -110,7 +110,8 @@ class hardwareInterface():
if (self.loopcounter>15): if (self.loopcounter>15):
self.loopcounter=0 self.loopcounter=0
# self.ser.write(b'hello world\n') # self.ser.write(b'hello world\n')
self.ser.write(bytes("out"+str(self.outvalue)+"\n", "utf-8")) s = "000" + str(self.outvalue)
self.ser.write(bytes("do"+s+"\n", "utf-8")) # set outputs of dieter, see https://github.com/uhi22/dieter
s = self.ser.read(100) s = self.ser.read(100)
if (len(s)>0): if (len(s)>0):
self.addToTrace(str(len(s)) + " bytes received: " + str(s, 'utf-8').strip()) self.addToTrace(str(len(s)) + " bytes received: " + str(s, 'utf-8').strip())