Search found 8 matches

by Roozen
Sunday 17 October 2021 10:50
Forum: Dashticz
Topic: P1 meter Energy Returned not in Dashtizc
Replies: 18
Views: 1769

Re: P1 meter Energy Returned not in Dashtizc

Perfect.
I updated Dashtics to V3.8.5 today and it works :-)
Thanks for the fast solution
new graph.jpg
new graph.jpg (57.03 KiB) Viewed 1469 times
by Roozen
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 ...
by Roozen
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
by Roozen
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 ...
by Roozen
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 ...
by Roozen
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
by Roozen
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 ...
by Roozen
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 ...