Search found 30 matches

by Vondee
Monday 12 April 2021 19:41
Forum: Dashticz
Topic: Dashticz Dial - Features, Fixes & Updates
Replies: 199
Views: 28509

Re: Dashticz Dial - Features, Fixes & Updates

I have a custom dial with a 'CounterToday' value, but it does show now the 'Data' field of the variable with the 3.8.0 version. Version 3.6.7 do show 'CounterToday' correctly. Can you post your block definition? and the Domoticz json ouput of your device: http://domotics-ip:port/json.htm?type ...
by Vondee
Monday 12 April 2021 13:53
Forum: Dashticz
Topic: Dashticz Dial - Features, Fixes & Updates
Replies: 199
Views: 28509

Re: Dashticz Dial - Features, Fixes & Updates

I have a custom dial with a 'CounterToday' value, but it does show now the 'Data' field of the variable with the 3.8.0 version. Version 3.6.7 do show 'CounterToday' correctly.
by Vondee
Wednesday 16 December 2020 20:45
Forum: Dashticz
Topic: set color based on value
Replies: 30
Views: 4625

Re: set color based on value

Nice! Looking forward for the update

Thanks
by Vondee
Monday 14 December 2020 13:38
Forum: Dashticz
Topic: set color based on value
Replies: 30
Views: 4625

Re: set color based on value

I tried to use the 'SetBlock' for a dial to change the Title, but that does not work?
by Vondee
Saturday 21 November 2020 20:04
Forum: Dashticz
Topic: Dashticz - Custom CSS
Replies: 82
Views: 23146

Re: Dashticz - Custom CSS

I moved from Dashticz version 2 to version 3, but I struggling to get the text correct in the blocks on my Ipad. On my Ipad version 2 look like: versie2.PNG Text place well within the blocks. In Dashticz version 3 first I had to make the icons smaller by: far,.fas,.wi { font-size:15px; } But the ...
by Vondee
Saturday 21 November 2020 8:54
Forum: Dashticz
Topic: set color based on value
Replies: 30
Views: 4625

Re: set color based on value

I still had Dashtics version 2. Upgraded to version 3 and it works. Thanks
by Vondee
Wednesday 18 November 2020 23:02
Forum: Dashticz
Topic: set color based on value
Replies: 30
Views: 4625

Re: set color based on value

Yes, device 28 is a switch. In CONFIG.js: blocks[28] = {} blocks[28]['title'] = 'Laders' blocks[28]['icon'] = 'fas fa-battery-half' blocks[28]['hide_data'] = 1 blocks[462] = {} blocks[462]['title'] = "Batterij" blocks[462]['switch'] = 1 blocks[462]['icon'] = 'fa fa-car' In the column: columns[1 ...
by Vondee
Wednesday 18 November 2020 22:12
Forum: Dashticz
Topic: set color based on value
Replies: 30
Views: 4625

Re: set color based on value

Code: Select all

.warningyellow {
   color: Yellow;
}
by Vondee
Wednesday 18 November 2020 21:42
Forum: Dashticz
Topic: set color based on value
Replies: 30
Views: 4625

Re: set color based on value

I tried this: function getStatus_28(block){ var idx = block.idx; var device = block.device; if (device['Data'] == 'Off') { Dashticz.setBlock('462', { addClass: 'warningyellow' }); } else { Dashticz.setBlock('462', { addClass: '' }); } But is seem not to work? The color of block 462 does not change
by Vondee
Tuesday 17 November 2020 20:18
Forum: Dashticz
Topic: set color based on value
Replies: 30
Views: 4625

Re: set color based on value

I want to change the color of IDX 462 based on the status of IDX 460 but function getStatus_460(idx,value,device){ if(device['Data']=='Off'){ $('div.block_462').removeClass('warningred'); } else { $('div.block_462').addClass('warningred'); } } does not work, how should this be programmed in custom ...
by Vondee
Friday 06 November 2020 20:00
Forum: Show your projects
Topic: Connected Cars
Replies: 93
Views: 24433

Re: Connected Cars

Filip,

I was thinking about:

doors closed
remainingRangeFuel
remainingRangeElectric
ChargingStatus
ChargingTimeRemaining
Position

Wim
by Vondee
Friday 06 November 2020 15:21
Forum: Show your projects
Topic: Connected Cars
Replies: 93
Views: 24433

Re: Connected Cars

I created an easy plugin to support the BMW Connected Drive. Currently only the mileage, but can easily be extended. See https://github.com/FilipDem/Domoticz-BMW-plugin . Hi Filip, I installed the plugin and works fine! I see all data from my car (BMW X-1 Hybrid) in the log files, so it would be ...
by Vondee
Sunday 12 April 2020 20:47
Forum: PHP and all others
Topic: iRobot Roomba 980 integration
Replies: 59
Views: 27345

Re: iRobot Roomba 980 integration

Got it working now and the robots are real friends now talking to Domoticz. The 'Status' script works well and I translated to Dutch. The 'Command' script I stumbled upon dofile("/opt/domoticz/scripts/lua/Eigene_Funktionen.lua") and I did not exactly do with it, so I used the 'old' version of the ...
by Vondee
Friday 10 April 2020 21:02
Forum: PHP and all others
Topic: iRobot Roomba 980 integration
Replies: 59
Views: 27345

Re: iRobot Roomba 980 integration

After everyting works well for my 960 Irobot, I thought it was time to buy a nice frend for him (e5). I succesfully could get the BLID and so on, but now I am puzzling how to to get this in the 'default.json'. Or do I have to install a 2nd instance of the rest980 server?
by Vondee
Monday 24 February 2020 14:30
Forum: Examples & Solutions
Topic: Generic auto-off
Replies: 57
Views: 13966

Re: Generic auto-off

For testing I shortened the time to set the level to 6 minutes: "auto_off_dimlevel": { "level": 20, "minutes": 6 }, "auto_off_motion_device": ["Keuken Sensor PIR"] At 23:42:29 the light was switched off manually, level was still 20% At 23:42:52 PIR went to 'Off' Lightbulb got the commands: 23:49:00 ...
by Vondee
Sunday 23 February 2020 21:55
Forum: Examples & Solutions
Topic: Generic auto-off
Replies: 57
Views: 13966

Re: Generic auto-off

{
"auto_off_dimlevel": { "level": 20, "minutes": 30 },
"auto_off_motion_device": ["Keuken Sensor PIR"]
}
Dzvents 2.5.5
Zwave PIR
by Vondee
Sunday 23 February 2020 10:10
Forum: Examples & Solutions
Topic: Generic auto-off
Replies: 57
Views: 13966

Re: Generic auto-off

{
"auto_off_dimlevel": { "level": 20, "minutes": 30 },
"auto_off_motion_device": ["Keuken Sensor PIR"]
}
by Vondee
Thursday 20 February 2020 13:39
Forum: Examples & Solutions
Topic: Generic auto-off
Replies: 57
Views: 13966

Re: Generic auto-off

If I manually (or on time) turn the dimmed light off, then the script put it back at the level what was set by the '"auto_off_dimlevel".
The light was at the selected level for the "auto_off_dimlevel" when I turned off the light.

Or do I something wrong?
by Vondee
Monday 17 February 2020 20:04
Forum: Examples & Solutions
Topic: Generic auto-off
Replies: 57
Views: 13966

Re: Generic auto-off

I use now your latest script and seems to work OK now. If however someone enters the room, the light should go back to 100% again, even if it hasn't gone Off yet. But I'm still trying to get this to work correctly and I don't have a lot a free time for it. I do not think that I would use this ...
by Vondee
Sunday 16 February 2020 21:07
Forum: Examples & Solutions
Topic: Generic auto-off
Replies: 57
Views: 13966

Re: Generic auto-off

Sorry for that, I did not read the whole post. I looked at the log's and found more strange things, so I suspect it all has to do with the wrong format of the motion detectors. I changed the descriptions to the new format and tomorrow I will try to run the new script. The tip you had is an eyeopener ...