mirror of
https://gitlab.com/manzerbredes/ina260-zmq-publisher.git
synced 2025-04-08 14:29:10 +00:00
Debug power reporting
This commit is contained in:
parent
57b6888bca
commit
963e0e8381
1 changed files with 7 additions and 1 deletions
|
@ -58,7 +58,13 @@ while True:
|
|||
elif linum > 1:
|
||||
if unique:
|
||||
split=line.split(",")
|
||||
if lastPower != "" and split[2] != lastPower:
|
||||
if lastPower != "":
|
||||
if split[2] != lastPower:
|
||||
print(line)
|
||||
finalLinePrinted=True
|
||||
else:
|
||||
finalLinePrinted=False
|
||||
else:
|
||||
print(line)
|
||||
finalLine=line
|
||||
lastPower=split[2]
|
||||
|
|
Loading…
Add table
Reference in a new issue