feature: added EVSE_Status in claralogconverter and 3rd channel in scope to view it.

This commit is contained in:
uhi22 2023-12-11 22:00:02 +01:00
parent 03ca236536
commit 7014d1c2d2
2 changed files with 10 additions and 4 deletions

View file

@ -73,9 +73,9 @@ def convertClaralogToTxt(inputFileName):
decoded=exiConnector.exiDecode(strExi, pre)
#print(decoded)
print(decoded, file=fileOut)
print(decoded)
#print(decoded)
strTimeStamp = line[line.find("[")+1 : line.find("]")]
print(strTimeStamp)
#print(strTimeStamp)
try:
jsondict = json.loads(decoded)
try:
@ -84,7 +84,6 @@ def convertClaralogToTxt(inputFileName):
i = combineValueAndMultiplier(jsondict["EVSEPresentCurrent.Value"], jsondict["EVSEPresentCurrent.Multiplier"])
print("[" + strTimeStamp + "] EVSEPresentCurrent=" + str(i), file=fileOutValues)
except:
print("no present voltage")
pass
try:
u = combineValueAndMultiplier(jsondict["EVTargetVoltage.Value"], jsondict["EVTargetVoltage.Multiplier"])
@ -98,6 +97,13 @@ def convertClaralogToTxt(inputFileName):
print("[" + strTimeStamp + "] EVRESSSOC=" + str(soc), file=fileOutValues)
except:
pass
try:
soc = jsondict["DC_EVSEStatus.EVSEStatusCode"]
print("[" + strTimeStamp + "] EVSEStatusCode=" + str(soc), file=fileOutValues)
except:
pass
except:
pass
if ((numberOfPackets % 100)==0):

View file

@ -86,7 +86,7 @@ Lines = fileIn.readlines()
# yellow green blue red orange
#channelColors = ["#FFFF00", "#10FF10", "#4040FF", "#FF4040", "#FFC000" ]
channelColors = ["#FFFF00", "#10FF10" ]
channelColors = ["#FFFF00", "#10FF10", "#4040FF" ]
numberOfChannels = len(channelColors)
print(str(numberOfChannels) + " channels")