Perfect.
I updated Dashtics to V3.8.5 today and it works
Thanks for the fast solution
Search found 8 matches
- Sunday 17 October 2021 10:50
- Forum: Dashticz
- Topic: P1 meter Energy Returned not in Dashtizc
- Replies: 18
- Views: 1769
- Friday 08 October 2021 17:46
- Forum: Dashticz
- Topic: P1 meter Energy Returned not in Dashtizc
- Replies: 18
- Views: 1769
P1 meter Energy Returned not in Dashtizc
Dear viewer, Recently I am experimenting with dashticz and trying to getting familiar with custom graphs. Problem I have is that I don't get the daily "energy returned" in the dashticz graph. I am using the below script in config.js for the block definition: blocks['P1_Stroom2'] = { title: 'Stroom ...
- Monday 30 March 2020 19:05
- Forum: Third party and supplementary tools
- Topic: Getting Google Cloud Notifications to Work on 4.10717
- Replies: 8
- Views: 4741
Re: Getting Google Cloud Notifications to Work on Stable
Thanks for your reply.
Today I updated to version 2020.1 and the notification works via gcn
Today I updated to version 2020.1 and the notification works via gcn
- Sunday 15 March 2020 11:20
- Forum: Third party and supplementary tools
- Topic: Getting Google Cloud Notifications to Work on 4.10717
- Replies: 8
- Views: 4741
Re: Getting Google Cloud Notifications to Work on Stable
@Ittiz, Thanks for your clear explanation. Unfortunally I can not get it work. Below what I filled-in for notifications to one android device with domoticz lite. The log file does not give any error, but no notification arrived to mobile phone Log: 2020-03-15 13:14:07.888 Status: Notification ...
- Thursday 16 January 2020 17:33
- Forum: LUA
- Topic: Simple "Toggle" Switch LUA
- Replies: 9
- Views: 5598
Re: Simple "Toggle" Switch LUA
I have updated to script as below to monitor whether the else if commend is working corrrectly. This is the case commandArray = {} if devicechanged['$S2_SingleClick'] then if otherdevices['Tuinverlichting']=='Off' then commandArray['Tuinverlichting']='100'and print('Tuinverlichting aan') else ...
- Thursday 16 January 2020 17:08
- Forum: LUA
- Topic: Simple "Toggle" Switch LUA
- Replies: 9
- Views: 5598
Re: Simple "Toggle" Switch LUA
When off:
2020-01-16 17:05:19.607 Status: LUA: State: Off
2020-01-16 17:05:19.608 Status: LUA: Value: 0
When on:
2020-01-16 17:06:25.599 Status: LUA: State: On
2020-01-16 17:06:25.600 Status: LUA: Value: 100
2020-01-16 17:05:19.607 Status: LUA: State: Off
2020-01-16 17:05:19.608 Status: LUA: Value: 0
When on:
2020-01-16 17:06:25.599 Status: LUA: State: On
2020-01-16 17:06:25.600 Status: LUA: Value: 100
- Wednesday 15 January 2020 19:12
- Forum: LUA
- Topic: Simple "Toggle" Switch LUA
- Replies: 9
- Views: 5598
Re: Simple "Toggle" Switch LUA
Hi Bewo, Thanks for your reply. The above script works partially if the "tuinverlichting" is on Then the "Tuinverlichting will switch off when pressing the $S2 Singleclick button When pressing again it will not toggle on again Looks like the part after else is not working When I reverse the on/off ...
- Monday 23 December 2019 18:00
- Forum: LUA
- Topic: Simple "Toggle" Switch LUA
- Replies: 9
- Views: 5598
Re: Simple "Toggle" Switch LUA
I am trying to integrate the simple toggle function as action for a fibaro dimmer2 S2 singleclick. Sounds simple, but somehow I can not get it work. This is the script I am using: commandArray = {} if (devicechanged['$S2 SingleClick']=='On') and (otherdevices['Tuinverlichting']=='Off') then ...