Search found 15 matches
- Tuesday 30 November 2021 12:41
- Forum: Dashticz
- Topic: Dahsticz - change thermostat block
- Replies: 3
- Views: 407
Re: Dahsticz - change thermostat block
I don't know what caused it, but at least I got it working :D function getBlock_5857(block){ //change 233 to the idx of your device! block.min = parseFloat(block.min || settings['setpoint_min'] || 10); block.max = parseFloat(block.max || settings['setpoint_max'] || 30); var idx = block.idx; //the ...
- Tuesday 30 November 2021 9:30
- Forum: Dashticz
- Topic: Dahsticz - change thermostat block
- Replies: 3
- Views: 407
Re: Dahsticz - change thermostat block
The problem I have is (I think) with the mountpoint. I can't seem to understand that part. I can activate the onclick event for the block, but then the onclick event for the + and - buttons are ignored. function getBlock_5857(block){ var idx = block.idx; var device = block.device; var $mountPoint ...
- Monday 29 November 2021 9:23
- Forum: Dashticz
- Topic: Dahsticz - change thermostat block
- Replies: 3
- Views: 407
Dahsticz - change thermostat block
Hi All, I want to change the thermostat block. Now it only reacts on + and - When pressing the heating icon nothing happens. I've tried to change it using custom.js, but I can't seem to get it working. What I want to achieve is the following: when pressing the heating icon I want to set the ...
- Friday 12 January 2018 20:49
- Forum: Speech & Voice Systems
- Topic: Controlicz - Domoticz to Google Home/Assistant integration
- Replies: 2277
- Views: 490147
- Thursday 28 December 2017 23:40
- Forum: OpenTherm gateway
- Topic: experience with the OTGW from NODO-shop?
- Replies: 53
- Views: 23612
Re: experience with the OTGW from NODO-shop?
A lot of information can be found on this link: https://www.domoticaforum.eu/viewtopic.php?f=75&t=10193&start=0 And since my suggested serial to ethernet adapter can only handle ttl, you must not use the max232, but connect the converter directly to the pic. You can use the connections on the place ...
- Thursday 28 December 2017 11:24
- Forum: OpenTherm gateway
- Topic: experience with the OTGW from NODO-shop?
- Replies: 53
- Views: 23612
Re: experience with the OTGW from NODO-shop?
A lot of information can be found on this link: https://www.domoticaforum.eu/viewtopic.php?f=75&t=10193&start=0 And since my suggested serial to ethernet adapter can only handle ttl, you must not use the max232, but connect the converter directly to the pic. You can use the connections on the place ...
- Tuesday 26 December 2017 22:11
- Forum: OpenTherm gateway
- Topic: experience with the OTGW from NODO-shop?
- Replies: 53
- Views: 23612
Re: experience with the OTGW from NODO-shop?
In the ideal situation I'd like to add a LAN-port on the OTGW itself, so there are no other devices. A bit like what Thinkpad did ( http://domoticz.com/forum/viewtopic.php?f=30&t=8505 ). That way there would be no need for an extra RPi or anything. I had hoped that instead of the Wifi-module it ...
- Monday 25 December 2017 23:55
- Forum: OpenTherm gateway
- Topic: experience with the OTGW from NODO-shop?
- Replies: 53
- Views: 23612
Re: experience with the OTGW from NODO-shop?
For those wondering: I've mailed Nodo-shop with the question if their version of the OTGW can be connected with an ethernetcable instead of Wifi, and they responded that it cannot. The only way is Wifi or USB. Since my boiler is located on my attic, and the RPi thats running Domoitcz is in my ...
- Friday 13 October 2017 22:28
- Forum: Speech & Voice Systems
- Topic: Google Home
- Replies: 89
- Views: 47383
Re: Google Home
This is the URL taken from my Applet, no issues with updating the variable, using HTTPS and my ifttt user, which currently has admin access. Note I am using a non standard SSL port of 1443, but that should have little effect, my Variable has been changed from "Status" to "GH_Request" but it worked ...
- Wednesday 11 October 2017 18:28
- Forum: Speech & Voice Systems
- Topic: Google Home
- Replies: 89
- Views: 47383
Re: Google Home
Hmm, When I try to update a variable with https and basic auth, I get the forbidden page. But when I update a switch, it works. Example update variable (not working): https: //test:test@externaliptodomoticz/json.htm?type=command¶m=updateuservariable&vname=Status&vtype=2&vvalue=test Example ...
- Monday 09 October 2017 21:34
- Forum: Speech & Voice Systems
- Topic: Google Home
- Replies: 89
- Views: 47383
Re: Google Home
Hmm, When I try to update a variable with https and basic auth, I get the forbidden page. But when I update a switch, it works. Example update variable (not working): https: //test:test@externaliptodomoticz/json.htm?type=command¶m=updateuservariable&vname=Status&vtype=2&vvalue=test Example ...
- Tuesday 03 October 2017 12:40
- Forum: Speech & Voice Systems
- Topic: Google Home
- Replies: 89
- Views: 47383
Re: Google Home
This IFTTT solution looks nice, but what I don't like is to open up unsecured connections to domoticz. From what I understand is that you need to use unsecured http url's to connect to domoticz. Is there a way to make the communication secure? I'm currently using ha bridge locally, but it only ...
- Monday 17 July 2017 14:17
- Forum: Other questions and discussions
- Topic: Sonoff Touch
- Replies: 48
- Views: 14498
Re: Sonoff Touch
Small hack to get control over the backlight for the touch button: sonoff touch.jpg Cut the copper between resistor 102 and pin 'Relay'. Connect a wire from the cut off resistor to the esp. You can use several GPIO ports, but I used GPIO 9. In the picture, the background led is now connected to GPIO ...
- Wednesday 30 December 2015 22:51
- Forum: Android
- Topic: Domoticz app 2.0
- Replies: 2380
- Views: 618855
Re: Domoticz app 2.0
Hi developers, It took me a while to find the problem for the thermostat... You should change the following lines in DevicesInfo.java. if (row.has("SetPoint")){ setPoint = row.getLong("SetPoint"); } should be changed to : if (row.has("SetPoint")){ setPoint = Double.parseDouble(row.getString ...
- Tuesday 29 December 2015 15:33
- Forum: Android
- Topic: Domoticz app 2.0
- Replies: 2380
- Views: 618855
Thermostat
I found a bug in the app for the thermostat. Clicking the + for a thermostat will increase the temp with 1 degree. Clicking on the - will decrease the temperature with 0.5 degrees, only the first time. After the first time the temperature gets decreased with 1 degree. Pressing multiple times on the ...