mirror of
https://gitlab.com/manzerbredes/ina260-zmq-publisher.git
synced 2025-04-19 04:09:45 +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:
|
elif linum > 1:
|
||||||
if unique:
|
if unique:
|
||||||
split=line.split(",")
|
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)
|
print(line)
|
||||||
finalLine=line
|
finalLine=line
|
||||||
lastPower=split[2]
|
lastPower=split[2]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue