i managed to pull data out mu plugwise p1 meter and published it in pimatic.
now i want to have the correct values any one has an idea how to fix this?
This is what pimatic shows :
This is what Plugwise shows:
[Solved] Plugwise P1 Smart Meter
i managed to pull data out mu plugwise p1 meter and published it in pimatic.
now i want to have the correct values any one has an idea how to fix this?
This is what pimatic shows :
This is what Plugwise shows:
Change the unit to “Wh” and it should work.
The Frontend convert it by it self to the right value with the right unit prefix.
pimatic rocks!!!
@Icesory said:
Change the unit to “Wh” and it should work.
The Frontend convert it by it self to the right value with the right unit prefix.
Wauw i missed that one… thanks
@Icesory mayby you know how i can change this :
if my current wattage is above 1000 Watt it changes in the graph to kW how can i change this so i always have Wattage?
Idont know a way to fix the scale in the graph. but you can change the showen area of the graph with the slider. and when you remove with this the high values the graph calculates the scale new.
pimatic rocks!!!
I found the solution just change “unit”: “w” to “unit”: “Watt” and everything will be displayed as wattage in the graph.
"id": "energiemeter_huidig",
"name": "Huidig stroomverbruik",
"class": "LogWatcher",
"file": "/home/pi/plugwise.log",
"attributes": [
{
"name": "stroom",
"type": "number",
"unit": "Watt"
}
],
"lines": [
{
"match": "<measurement\\s*log_date='[0-9]+-[0-9]+-[0-9]+T[0-9]+:[0-9]+:[0-9]+\\+[0-9]+:[0-9]+'\\sunit='W'\\s*directionality='consumed'>([0-9]+).[0-9]+</measurement>",
"stroom": "$1"
}
]
},