Created At
Oct 29, 2022
Created At
Oct 29, 2022
Last Update
Oct 31, 2022
Platforms
HC 3 Lite, Z-box Hub, Yubii Home Pro, Yubii Home, Venture WISE, HC 3
Views
4494
Download
261
Integrate your analog water meter with the FIBARO Home Center 3 using the HomeWizard Wi-Fi Water meter.
View the included manual for detailed installation instructions. English installation instructions are included!
Perform the physical installation of the Wi-Fi P1 meter and and configure the device in the HomeWizard Energy app.
To establish communication between the FIBARO Home Center 3 and the HomeWizard Wi-Fi P1 meter, you need to activate the local API in the app.
Full documentation of the Wi-Fi Water meter Quick App is included in the provided ZIP file.
More interested FIBARO integrations and scenes can be found on my Smart Home Adventure blog.
Hallo Molla, de totale waarde is al aanwezig in de QA. Dat had ik niet in de gaten. Je kunt de meterstand verhogen door met een lua scene of in de code eenmalig een hogere waarde te sturen.
Hallo Molla, nu reset de totaal stand zich elke nacht. Je zou de code moeten aanpassen om de meterstand te behouden. Ik zou zelf een device erbij programmeren dat deze waarde weer geeft. Ik zal een dezer dagen kijken of ik dit kan maken en dan update ik de QA.
Hallo Joep, Vandaag de HW watermeter geinstalleerd in de meterkast en de Quickapp. Ik zou graag de actuele totaal stand willen uitlezen op de meter. Op mijn water meter staat 170m3. Hoe kan ik ervoor zorgen dat bij "verbruik totaal" begint bij 170m3?
Hello Jochem, this is the Water meter Quick App ;) The HomeWizard P1 meter Quick App is available from my website on the Energy Panel post (I can't place links here).
Hoi Joep, als beginnende Fibaro gebruiker, is het nog zoeken :) Bij welke regel moet ik eenmalig mijn huidige totaal water stand (170m3) sturen? class 'DayWater'(QuickAppChild) function DayWater:__init(device) -- You should not insert code before QuickAppChild.__init. QuickAppChild.__init(self, device) end function DayWater:updateValue(data) self:updateProperty("value", data.day_liter_m3 * 1000) -- write in l! self:updateProperty("unit", "l") self:updateProperty("log", data.update_timestamp) end class 'TotalWater'(QuickAppChild) function TotalWater:__init(device) -- You should not insert code before QuickAppChild.__init. QuickAppChild.__init(self, device) end function TotalWater:updateValue(data) self:updateProperty("value", data.total_liter_m3) -- write in m3! self:updateProperty("unit", "m3") self:updateProperty("log", data.update_timestamp) end class 'ActiveWater'(QuickAppChild) function ActiveWater:__init(device) -- You should not insert code before QuickAppChild.__init. QuickAppChild.__init(self, device) end