Toon App: Water
Moderators: marcelr, TheHogNL, Toonz
Re: Toon App: Water
Same works for me indeed, only thing is that you can't use the default water tiles like mentioned above.
Re: Toon App: Water
Yes I installed the app, entered the correct ip address and press opslaan, but after entering the correct ip address and save the Toon didnt reboot.oepi-loepi wrote:Did you do the app install, set the ip adress an did you click save on the configuration screen? The toon should restart and after that the tiles in. The water tab become visible. Select the grap with the 3 vertical bars and click that tile.Daniel wrote:@oepi loepie On you Toon I see in "grafiek stroom gas water" But my Toon does not show the water in the graph screen.
Firmware is 5.39.7
Is see the message 'water instellen en herstarten als nodig... Water featuren stonden reeds aan... instellingen opgeslagen... Nieuwe tellerstand opgeslagen...
Its working now! Just run the update script -f
-
- Advanced Member
- Posts: 665
- Joined: Sat Feb 09, 2019 7:18 pm
Re: Toon App: Water
So you just forgot step 1: update your toon....Daniel wrote:Yes I installed the app, entered the correct ip address and press opslaan, but after entering the correct ip address and save the Toon didnt reboot.oepi-loepi wrote:Did you do the app install, set the ip adress an did you click save on the configuration screen? The toon should restart and after that the tiles in. The water tab become visible. Select the grap with the 3 vertical bars and click that tile.Daniel wrote:@oepi loepie On you Toon I see in "grafiek stroom gas water" But my Toon does not show the water in the graph screen.
Firmware is 5.39.7
Is see the message 'water instellen en herstarten als nodig... Water featuren stonden reeds aan... instellingen opgeslagen... Nieuwe tellerstand opgeslagen...
Its working now! Just run the update script -f
Re: Toon App: Water
A little addition to the manual, or maybe it's in there and I missed it.
The meter value should be added like this "2295454" (without the quotes) and not like I did 2295.454 or 2295,454
The meter value should be added like this "2295454" (without the quotes) and not like I did 2295.454 or 2295,454
Re: Toon App: Water
It was a bit of a struggle for me to get the data into Home Assistant though I have it working , well kind off lol
I found something and still need a bit help is possible.
I can get the meter value now though I need to split it because it reads “2295565 M3” instead I need to have the last 3 digits behind a , (comma) instead.
Copy to clipboard
source is like posted above:
I found something and still need a bit help is possible.
I can get the meter value now though I need to split it because it reads “2295565 M3” instead I need to have the last 3 digits behind a , (comma) instead.
Copy to clipboard
Code: Select all
sensor:
- platform: rest
resource: http://192.168.1.130/water.html
name: Watermeter
value_template: "{{ value_json.waterquantity }}"
unit_of_measurement: "M3"
Code: Select all
{"waterflow":"0","waterquantity":"2295565"}
-
- Advanced Member
- Posts: 665
- Joined: Sat Feb 09, 2019 7:18 pm
Re: Toon App: Water
so you are reading liters instead of m3 (change m3 into l an option?)
Re: Toon App: Water
Would be an option though then it's quite a long number and differences are less visible in my opinion.
I can see if I can do some math in home assistant to get what I want.
Thank you for the service
I can see if I can do some math in home assistant to get what I want.
Thank you for the service
Re: Toon App: Water
After all it was easier than I thought.
Changed this
value_template: "{{ value_json.waterquantity }}"
To this
value_template: "{{ value_json.waterquantity | float / 1000 }}"
Changed this
value_template: "{{ value_json.waterquantity }}"
To this
value_template: "{{ value_json.waterquantity | float / 1000 }}"
-
- Advanced Member
- Posts: 665
- Joined: Sat Feb 09, 2019 7:18 pm
Re: Toon App: Water
Great!Jasper wrote:After all it was easier than I thought.
Changed this
value_template: "{{ value_json.waterquantity }}"
To this
value_template: "{{ value_json.waterquantity | float / 1000 }}"
-
- Advanced Member
- Posts: 665
- Joined: Sat Feb 09, 2019 7:18 pm
Re: Toon App: Water
New Version: 1.1.2
-Added possibilty to use Domoticz as sensor. It is possible but not advisable since this option is much slower than direct as with the Wemos
-Change in toon files files dusring configuration so that also Euro's are added. For this, goto config screen and click "opslaan"
-Added possibilty to use Domoticz as sensor. It is possible but not advisable since this option is much slower than direct as with the Wemos
-Change in toon files files dusring configuration so that also Euro's are added. For this, goto config screen and click "opslaan"
Re: Toon App: Water
Thanks, I'll probably try tomorrow
Re: Toon App: Water
Don't see 1.1.2 on githuboepi-loepi wrote:New Version: 1.1.2
-Added possibilty to use Domoticz as sensor. It is possible but not advisable since this option is much slower than direct as with the Wemos
-Change in toon files files dusring configuration so that also Euro's are added. For this, goto config screen and click "opslaan"
ToonWater.ino.d1_mini.bin
version 1.1.1
6 days ago
-
- Advanced Member
- Posts: 665
- Joined: Sat Feb 09, 2019 7:18 pm
Re: Toon App: Water
It is the Toon app which has changed not the ESP. Update your toon via the ToonStore .
Re: Toon App: Water
Thanks, that probably updated last night already. See it's on the 1.1.2 already.
-
- Starting Member
- Posts: 10
- Joined: Thu Aug 07, 2014 2:40 pm
Re: Toon App: Water
Why not use espeasy or tasmota on the D1 mini?