@htilburgs Sorry i mean active voltage yes.
I look at it to see on a sunny day what’s the voltage.
Above 253V the solar panel inverter shuts down. This can happen when you have a lot of solar power in your neighbourhood. My peak was 247V.
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-MyHomeWizard
-
RE: MMM-MyHomeWizard
@htilburgs P1 and Water works now. Thanks for your help and making this module.
I’ve also looked for the KWH enerymeter data myself but i get no data when i try to see it in the browser. Manual for the api on Homewizard site talks about V1 and V2. That for later :-)I also add (Ai) current_voltage data on my screen, maybe nice to add native in your code.
-
RE: MMM-MyHomeWizard
@htilburgs I think i found my problem. The Watermeter and the KWh1 meter are connected to the guest network. So that makes sense that they on a different network. I gonna change it and let you know.
-
RE: MMM-MyHomeWizard
@htilburgs Progress! When i remove the line (IP adress) of the watermeter i see the data of the P1 meter.
It looks like Homewizard create its own network in the 192.168.101.-- range. I also have an KWH1 meter wich also has an 192.168.101 adress. What i don’t understand how MagicMirror connects to the other ip network?
And if i get the watermeter to work, is it also easy to add de KW1 meter also? -
RE: MMM-MyHomeWizard
@htilburgs Api is working. Actually i am using an older version of mmm.homewizard wich is working. I see that your version can provide more data including the watermeter. When i use config file below is see the data from mmm.homewizard but mmm.myhomewizard gives Header plus Loading…
I changed the position to bottom_right but that doesn’t have effect. For the older version i use only right wich works in my config ., { module: "MMM-HomeWizard", position: "right", header: "Electricity & Gas", config: { url: "http://192.168.178.152/api/v1/data", updateInterval: 2000 } }, { module: 'MMM-MyHomeWizard', position: 'bottom_right', header: 'HomeWizard', disabled: false, config: { P1_IP: "192.168.178.152", // IP Address HomeWizard P1 meter WM_IP: "192.168.101.14", // IP Address HomeWizrd Water meter - Remove when not used extraInfo: true, // Show extra information from P1 meter currentPower: true, // Show the current Power Consumption currentWater: true, // Show the current Water Consumption showGas: true, // Show the Gas option showFooter: true, // Show footer (name Power Meter) updateInterval: 5000, // Update every 5 seconds maxWidth: "500px", // Max Module width showLastUpdate: true, // Show the last update for the History Data in the footer showDeltaPower: true, // Show Delta between History and Current data (Power) showDeltaGas: true, // Show Delta between History and Current data (Gas) showDeltaWater: true // Show Delta between History and Current data (Water) } }, {I tried also 192.168.178.152/api/v1/data but that doesn’t work also.
-
RE: MMM-MyHomeWizard
@htilburgs Good day, I don’t start MM with PM2 .
This is a part in of my config.js
{ module: "MMM-DHT-Sensor", position: "bottom_right", header: "Badkamer temperatuur", config: { sensorPin: 4, sensorType: 11, // 11 for DHT11 or 22 for DHT22 / AM2302 updateInterval: 60000, //milliseconden } }, { module: 'MMM-MyHomeWizard', position: 'right', header: 'HomeWizard', disabled: false, config: { P1_IP: "192.168.178.152", // IP Address HomeWizard P1 meter WM_IP: "192.168.101.14", // IP Address HomeWizrd Water meter - Remove when not used extraInfo: true, // Show extra information from P1 meter currentPower: true, // Show the current Power Consumption currentWater: true, // Show the current Water Consumption showGas: true, // Show the Gas option showFooter: true, // Show footer (name Power Meter) updateInterval: 5000, // Update every 5 seconds maxWidth: "500px", // Max Module width showLastUpdate: true, // Show the last update for the History Data in the footer showDeltaPower: true, // Show Delta between History and Current data (Power) showDeltaGas: true, // Show Delta between History and Current data (Gas) showDeltaWater: true // Show Delta between History and Current data (Water) } }, { module: 'MMM-Pir', position: 'top_center',When i run npm start dev and filter on myhomewizard i see no errors,
Load script: modules/MMM-MyHomeWizard/MMM-MyHomeWizard.js
module.js:483 Module registered: MMM-MyHomeWizard
loader.js:137 Bootstrapping module: MMM-MyHomeWizard
loader.js:141 Scripts loaded for: MMM-MyHomeWizard
loader.js:179 Load stylesheet: modules/MMM-MyHomeWizard/MMM-MyHomeWizard.css
loader.js:144 Styles loaded for: MMM-MyHomeWizard
translator.js:103 MMM-MyHomeWizard - Load translation: translations/nl.json
loader.js:147 Translations loaded for: MMM-MyHomeWizard
MMM-MyHomeWizard.js:38 Starting module: MMM-MyHomeWizardThanks
-
RE: MMM-MyHomeWizard
I installed the module and edit the config file including the ip adressen from the P1 and the watermeter.
When i start MagicMirror is see de header Homewizard but it says Loading…
Any suggetions what this could be? -
RE: Homewizard P1 meter
@vansman it starts working again. After a few days the information is returned at the screen. No idea why.
-
RE: Homewizard P1 meter
@Hoaxr Mine is also stopped working. Try to set the url in whitelist but that seems to do nothing with it.
When copy the url in the browser i get the information on my screen so the url is right and working at the rasberry.
Only see the header on my mirror no data. -
RE: Homewizard P1 meter
@Hoaxr Thanks! It works.
I added some dataRequest’s in Homewizard.js. (current voltage - total export)What i like to see is a daily use of energy. In the API list i see a timestamp but my coding skills are very low.
I also tried to add the data from the watermeter. This data comes from another local ip adres. When adding the dataRequest.active_liter_lpm the display returns a Null number.
So tried add an second ip in config.js but then the first ip is ignored, so all electricity and gas return a Null number. (the value of the watermeter then displayed correct.)
But a nice start that i have some info on my mirror.
Thanks so far -
Homewizard P1 meter
I like to see some data from the Homewizard P1 meter on my mirror.
There is an local api which can be turned on in the app.
In a browser i get the current data with http://IP_P1_meter/api/v1/telegram
Unfortunately my coding skills are not that great.Hope someone like to create it