|
@@ -512,20 +512,20 @@ def processMeterData(data):
|
|
|
|
|
|
if energy_today_total is not None:
|
|
if energy_today_total is not None:
|
|
cJson['Today__' + unit] = round(energy_today_total, digits)
|
|
cJson['Today__' + unit] = round(energy_today_total, digits)
|
|
-
|
|
|
|
if MQTTenabled:
|
|
if MQTTenabled:
|
|
mqttc.publish(statTopic + "/today__" + unit, str(round(energy_today_total, digits)), qos=0, retain=False)
|
|
mqttc.publish(statTopic + "/today__" + unit, str(round(energy_today_total, digits)), qos=0, retain=False)
|
|
if conv_unit and conv_factor is not None:
|
|
if conv_unit and conv_factor is not None:
|
|
conv_value = energy_today_total * conv_factor
|
|
conv_value = energy_today_total * conv_factor
|
|
mqttc.publish(statTopic + "/today__" + conv_unit, str(round(conv_value, conv_digits)), qos=0, retain=False)
|
|
mqttc.publish(statTopic + "/today__" + conv_unit, str(round(conv_value, conv_digits)), qos=0, retain=False)
|
|
cJson['Today__' + conv_unit] = round(conv_value, conv_digits)
|
|
cJson['Today__' + conv_unit] = round(conv_value, conv_digits)
|
|
- if cost_unit and cost_per_unit is not None:
|
|
|
|
- if cost_from_conv:
|
|
|
|
- cost_value = round(conv_value * cost_per_unit, 2)
|
|
|
|
- else:
|
|
|
|
- cost_value = round(energy_today_total * cost_per_unit, 2)
|
|
|
|
|
|
+ if cost_unit and cost_per_unit is not None and cost_from_conv:
|
|
|
|
+ cost_value = round(conv_value * cost_per_unit, 2)
|
|
mqttc.publish(statTopic + "/cost_today__" + cost_unit, str(cost_value), qos=0, retain=False)
|
|
mqttc.publish(statTopic + "/cost_today__" + cost_unit, str(cost_value), qos=0, retain=False)
|
|
cJson['cost_today__' + cost_unit] = round(cost_value, 2)
|
|
cJson['cost_today__' + cost_unit] = round(cost_value, 2)
|
|
|
|
+ elif not cost_from_conv:
|
|
|
|
+ cost_value = round(energy_today_total * cost_per_unit, 2)
|
|
|
|
+ mqttc.publish(statTopic + "/cost_today__" + cost_unit, str(cost_value), qos=0, retain=False)
|
|
|
|
+ cJson['cost_today__' + cost_unit] = round(cost_value, 2)
|
|
|
|
|
|
if energy_yesterday_total is not None:
|
|
if energy_yesterday_total is not None:
|
|
cJson['Yesterday__' + unit] = round(energy_yesterday_total, digits)
|
|
cJson['Yesterday__' + unit] = round(energy_yesterday_total, digits)
|
|
@@ -538,10 +538,13 @@ def processMeterData(data):
|
|
if cost_unit and cost_per_unit is not None:
|
|
if cost_unit and cost_per_unit is not None:
|
|
if cost_from_conv:
|
|
if cost_from_conv:
|
|
cost_value = round(conv_value * cost_per_unit, 2)
|
|
cost_value = round(conv_value * cost_per_unit, 2)
|
|
- else:
|
|
|
|
- cost_value = round(energy_yesterday_total * cost_per_unit, 2)
|
|
|
|
- mqttc.publish(statTopic + "/cost_yesterday__" + cost_unit, str(cost_value), qos=0, retain=False)
|
|
|
|
- cJson['cost_yesterday__' + cost_unit] = round(cost_value, 2)
|
|
|
|
|
|
+ mqttc.publish(statTopic + "/cost_yesterday__" + cost_unit, str(cost_value), qos=0, retain=False)
|
|
|
|
+ cJson['cost_yesterday__' + cost_unit] = round(cost_value, 2)
|
|
|
|
+ elif not cost_from_conv:
|
|
|
|
+ cost_value = round(energy_yesterday_total * cost_per_unit, 2)
|
|
|
|
+ mqttc.publish(statTopic + "/cost_yesterday__" + cost_unit, str(cost_value), qos=0, retain=False)
|
|
|
|
+ cJson['cost_yesterday__' + cost_unit] = round(cost_value, 2)
|
|
|
|
+
|
|
# END file log
|
|
# END file log
|
|
|
|
|
|
if verbose:
|
|
if verbose:
|