removed Lpoti Bug

Lpotis didn't work because of wrong halpin Name.
also little tidy up
This commit is contained in:
theBohnanza 2023-10-24 23:16:19 +02:00
parent de38176a45
commit b7ce6e5071

View File

@ -224,11 +224,11 @@ for port in range(AInputs):
for Poti in range(LPoti): for Poti in range(LPoti):
if SetLPotiValue[Poti] == 0: if SetLPotiValue[Poti] == 0:
for Pin in range(LPotiLatches[Poti][1]): for Pin in range(LPotiLatches[Poti][1]):
c.newpin("LPoti.{}.{}" .format(LPotiLatches[Poti][0],Pin), hal.HAL_BIT, hal.HAL_OUT) c.newpin("lpoti.{}.{}" .format(LPotiLatches[Poti][0],Pin), hal.HAL_BIT, hal.HAL_OUT)
if SetLPotiValue[Poti] == 1: if SetLPotiValue[Poti] == 1:
c.newpin("LPoti.{}.{}" .format(LPotiLatches[Poti][0],"out"), hal.HAL_S32, hal.HAL_OUT) c.newpin("lpoti.{}.out" .format(LPotiLatches[Poti][0]), hal.HAL_S32, hal.HAL_OUT)
if SetLPotiValue[Poti] == 2: if SetLPotiValue[Poti] == 2:
c.newpin("LPoti.{}.{}" .format(LPotiLatches[Poti][0],"out"), hal.HAL_FLOAT, hal.HAL_OUT) c.newpin("lpoti.{}.out" .format(LPotiLatches[Poti][0]), hal.HAL_FLOAT, hal.HAL_OUT)
# setup Absolute Encoder Knob halpins # setup Absolute Encoder Knob halpins
if BinSelKnob: if BinSelKnob:
@ -413,8 +413,8 @@ while True:
if(Debug):print("lpoti.{}.{} =0".format(io,Pin)) if(Debug):print("lpoti.{}.{} =0".format(io,Pin))
if LPotiLatches[Poti][0] == io and SetLPotiValue[Poti] >= 1: if LPotiLatches[Poti][0] == io and SetLPotiValue[Poti] >= 1:
c["lpoti.{}.{}" .format(io,"out")] = LPotiValues[Poti][value] c["lpoti.{}.out" .format(io)] = LPotiValues[Poti][value]
if(Debug):print("lpoti.{}.{} = 0".format("out",LPotiValues[Poti][value])) if(Debug):print("lpoti.{}.out = {}".format(io,LPotiValues[Poti][value]))
elif cmd == "K": elif cmd == "K":
firstcom = 1 firstcom = 1