Search found 13 matches
- Thursday 03 September 2020 21:00
- Forum: dzVents
- Topic: Dimming with a button (long press event) [Solved]
- Replies: 5
- Views: 1022
Re: Dimming with a button (long press event) [Solved]
2 options, didn't decide, which way to go: same dimming option as for brightness use a list with defined values and jump through the list Thanks to your help I get the values I'd like but how do I set the colortemp correctly? I tried some variations but always keep getting errors. Wand.setColor ...
- Thursday 03 September 2020 12:52
- Forum: dzVents
- Topic: Dimming with a button (long press event) [Solved]
- Replies: 5
- Views: 1022
Re: Dimming with a button (long press event) [Solved]
Thank you very much! I have a little lag but it's working now! return { on = { devices = { 'Arbeitszimmer Flur', 'Arbeitszimmer Wohnzimmer' } }, data = { lastColor = { initial = 0 } }, execute = function(domoticz, device) local Wand = domoticz.devices('Arbeitszimmer - Wandbeleuchtung') local Decke ...
- Wednesday 02 September 2020 19:23
- Forum: dzVents
- Topic: Dimming with a button (long press event) [Solved]
- Replies: 5
- Views: 1022
Dimming with a button (long press event) [Solved]
Hi! I'm trying to write a script to dim my light using an aqara opple switch. return { on = { devices = { 'Arbeitszimmer Flur', 'Arbeitszimmer Wohnzimmer' } }, execute = function(domoticz, device) local Wand = domoticz.devices('Arbeitszimmer - Wandbeleuchtung') local Decke = domoticz.devices ...
- Tuesday 07 April 2020 22:59
- Forum: Dashticz
- Topic: Combine multiple sensors (Temp/Hum) | RSS news feed not working
- Replies: 13
- Views: 962
Re: Combine multiple sensors (Temp/Hum) | RSS news feed not working
Ahh, I see! I just copied the generated file from my settings to the config file as a start. Thx for clarification on this.
- Tuesday 07 April 2020 22:06
- Forum: Dashticz
- Topic: Combine multiple sensors (Temp/Hum) | RSS news feed not working
- Replies: 13
- Views: 962
Re: Combine multiple sensors (Temp/Hum) | RSS news feed not working
you're my hero!
It's the default_cors_url parameter that was set to 0 in my config. This should be updated in the wiki (https://dashticz.readthedocs.io/en/mast ... /news.html)
It's the default_cors_url parameter that was set to 0 in my config. This should be updated in the wiki (https://dashticz.readthedocs.io/en/mast ... /news.html)
- Tuesday 07 April 2020 21:52
- Forum: Dashticz
- Topic: Combine multiple sensors (Temp/Hum) | RSS news feed not working
- Replies: 13
- Views: 962
Re: Combine multiple sensors (Temp/Hum) | RSS news feed not working
Sorry, seems like I didn't read that.
I tried the URL from the example and 3-4 other ones. None worked. All had the same error. The one I want to have is: www.n-tv.de/rss
I tried the URL from the example and 3-4 other ones. None worked. All had the same error. The one I want to have is: www.n-tv.de/rss
- Tuesday 07 April 2020 21:36
- Forum: Dashticz
- Topic: Combine multiple sensors (Temp/Hum) | RSS news feed not working
- Replies: 13
- Views: 962
Re: Combine multiple sensors (Temp/Hum) | RSS news feed not working
ok, will try that tomorrow.
Any suggestions for my news problem?
Any suggestions for my news problem?
- Tuesday 07 April 2020 21:31
- Forum: Dashticz
- Topic: Combine multiple sensors (Temp/Hum) | RSS news feed not working
- Replies: 13
- Views: 962
Re: Combine multiple sensors (Temp/Hum) | RSS news feed not working
My problem is, I don't have subdevices. I got three different idx numbers(45,46,47) for the readings from one aqara sensor. (Deconz zigbee plugin)
- Tuesday 07 April 2020 12:06
- Forum: Dashticz
- Topic: Combine multiple sensors (Temp/Hum) | RSS news feed not working
- Replies: 13
- Views: 962
Re: Combine multiple sensors (Temp/Hum) | RSS news feed not working
Any suggestions?
- Monday 06 April 2020 11:42
- Forum: Dashticz
- Topic: Dashticz moon pics and trashcan problems
- Replies: 8
- Views: 615
Re: Dashticz moon pics and trashcan problems
Thx! working like a charm now
- Sunday 05 April 2020 22:40
- Forum: Dashticz
- Topic: Dashticz moon pics and trashcan problems
- Replies: 8
- Views: 615
Re: Dashticz moon pics and trashcan problems
Permission on my pi:
config.jsdrwxr-xr-x 5 pi pi 4096 Apr 4 22:55 img
Code: Select all
buttons = {}
buttons.moon = {
width:12,
isimage:true,
refreshimage:60000,
image: 'moon'
}
columns[4] = {
blocks: ['sunrise', buttons.moon],
width: 2
}
- Sunday 05 April 2020 14:29
- Forum: Dashticz
- Topic: Dashticz moon pics and trashcan problems
- Replies: 8
- Views: 615
Re: Dashticz moon pics and trashcan problems
+1 on this
I just setup my dashticz and ran into the same issue:
I just setup my dashticz and ran into the same issue:
192.168.178.56/:1 GET http://192.168.178.56:8082/img/moon/ 403 (Forbidden)
- Sunday 05 April 2020 13:12
- Forum: Dashticz
- Topic: Combine multiple sensors (Temp/Hum) | RSS news feed not working
- Replies: 13
- Views: 962
Combine multiple sensors (Temp/Hum) | RSS news feed not working
Hi! I just started my Dashticz project and wanted to know if there is a possibility to combine sensor values to one item. Domoticz is reporting my Aqara Sensors with 3 different idx i.e. 45 temp, 46 hum, 47 pressure I found sensor_block: 1 as a parameter, but no explanation how it is supposed to be ...