Hi guys. This method does`t work anymore?
viewtopic.php?t=14489&sid=03c00c6ca0ceb ... 1dc0c1cc57
Search found 18 matches
- Friday 22 November 2024 11:49
- Forum: Python
- Topic: Python Plugin: Wan IP Checker
- Replies: 175
- Views: 34600
- Friday 17 February 2023 4:52
- Forum: Heating/cooling
- Topic: Python Plugin: Smart Virtual Thermostat
- Replies: 413
- Views: 106898
Re: Python Plugin: Smart Virtual Thermostat
Could you do screenshots svt config and domoticz too.Skippiemanz wrote: ↑Thursday 16 February 2023 23:04 Unfortunetly no succes here,
i Have one setup witch runs 2023.1 build 15082 and has been update from previous versions witch works ok.
And a fresh install with 2023.1 stable and gives the error. settings all the same.
- Thursday 16 February 2023 11:44
- Forum: Heating/cooling
- Topic: Python Plugin: Smart Virtual Thermostat
- Replies: 413
- Views: 106898
Re: Python Plugin: Smart Virtual Thermostat
Unfortunately adding my admin username and password to the SVT hardware settings did not resolve these errors for me :o For me too, don’t work. And i filled the ip tables without login before update, so there is something wrong with new update or plugin have not enough permissions to login. I s ...
- Thursday 16 February 2023 4:59
- Forum: Heating/cooling
- Topic: Python Plugin: Smart Virtual Thermostat
- Replies: 413
- Views: 106898
Re: Python Plugin: Smart Virtual Thermostat
For me too, don’t work. And i filled the ip tables without login before update, so there is something wrong with new update or plugin have not enough permissions to login.
- Wednesday 15 February 2023 16:37
- Forum: Heating/cooling
- Topic: Python Plugin: Smart Virtual Thermostat
- Replies: 413
- Views: 106898
Re: Python Plugin: Smart Virtual Thermostat
But i did nothing except update Domoticz. And the boiler switch is still the same IDX as before update
- Wednesday 15 February 2023 5:41
- Forum: Heating/cooling
- Topic: Python Plugin: Smart Virtual Thermostat
- Replies: 413
- Views: 106898
Re: Python Plugin: Smart Virtual Thermostat
After updating get this
Error calling 'http://192.168.0.108:8080/json.htm?type ... order=Name'
none of the devices in the 'heaters' parameter is a switch... no action !
- Friday 24 December 2021 15:12
- Forum: Design, usability and languages
- Topic: NEW frontpage.html - request comments
- Replies: 1301
- Views: 417068
Re: NEW frontpage.html - request comments
What`s a problem. Can`t see anything in simple html from first page. this is in FP setting: $(document).ready(function() { $.roomplan=5; // define roomplan in Domoticz and create items below. $.domoticzurl="localhost:8080"; //format: idx, value, label, description, [override css], [alarm value ...
- Thursday 04 November 2021 11:50
- Forum: Heating/cooling
- Topic: Python Plugin: Smart Virtual Thermostat
- Replies: 413
- Views: 106898
Re: Python Plugin: Smart Virtual Thermostat
Hi. Guys please how check relay which turn On/Off boiler thermostat. How to make periodically check and sending to SVT thermostat or how to SVT thermostat should check all of his data (periodically) and send state to relay.
- Tuesday 02 November 2021 10:53
- Forum: Other questions and discussions
- Topic: Publish MQTT Dzvents
- Replies: 1
- Views: 479
Re: Publish MQTT Dzvents
Hi. I have this script return { on = { devices = { 'Переключатель котла' }, timer = {'every minute'} }, logging = { level = domoticz.LOG_DEBUG }, execute = function(dz,item,device) local function sendMQTT(message, topic) local MQTTTopic = topic or 'domoticz/out' osCommand ( 'mosquitto_pub -u Cdzn -P ...
- Tuesday 02 November 2021 8:07
- Forum: Other questions and discussions
- Topic: Publish MQTT Dzvents
- Replies: 1
- Views: 479
Publish MQTT Dzvents
Hi. I have this script return { on = { devices = { 'Переключатель котла' }, timer = {'every minute'} }, logging = { level = domoticz.LOG_DEBUG }, execute = function(dz,item,device) local function sendMQTT(message, topic) local MQTTTopic = topic or 'domoticz/out' osCommand ( 'mosquitto_pub -u Cdzn -P ...
- Thursday 14 October 2021 11:45
- Forum: dzVents
- Topic: thermostat [Solved]
- Replies: 13
- Views: 1973
Re: thermostat [Solved]
If you are in control om the software inside the thermostat, why don't you rewrite it to be a device to show and enter a setpoint only. The setpoint set is sent into a setpoint device in Domoticz Then have your Domoticz do the actual work of regulating the heat source. For example by using svt. I ...
- Wednesday 13 October 2021 11:45
- Forum: dzVents
- Topic: thermostat [Solved]
- Replies: 13
- Views: 1973
Re: thermostat [Solved]
Many thermostats have a 'mode' setting, switching between 'economy' and 'normal' modes. Both modes have their own setpoint, so you need to set the both temperatures only once, and you only switch the mode control from economy to normal and vice versa. This allows you to still adjust the 'normal ...
- Saturday 02 October 2021 17:57
- Forum: dzVents
- Topic: thermostat [Solved]
- Replies: 13
- Views: 1973
Re: thermostat [Solved]
I think it will help return { on = {timer = {'at 8:00', 'every 3 minutes between 9:30 and 23:00', 'at 23:01' } }, logging = { level = domoticz.LOG_DEBUG }, execute = function(dz, item) if item.isTimer then if dz.time.matchesRule('at 8:00') then dz.devices('SetPoint').updateSetPoint(24) end if dz ...
- Saturday 02 October 2021 14:49
- Forum: dzVents
- Topic: thermostat [Solved]
- Replies: 13
- Views: 1973
Re: thermostat [Solved]
One more question. How to make this work with 2 different timers local Timer1 = 'at 19:43' local Timer2 = 'at 19:44' return { on = { timer = {Timer1, Timer2} }, logging = { level = domoticz.LOG_DEBUG }, execute = function(domoticz,item,devices) if (item.isTimer) then domoticz.devices(3 ...
- Saturday 02 October 2021 12:33
- Forum: dzVents
- Topic: thermostat [Solved]
- Replies: 13
- Views: 1973
Re: thermostat [Solved]
return { on = { timer = {'every minute'}, -- causes the script to be called every minute }, logging = { level = domoticz.LOG_DEBUG }, execute = function(domoticz,item) if (item.isTimer) then domoticz.devices('SetPoint').updateSetPoint(26) end end } Rename SetPoint to your thermostat and check Your ...
- Saturday 02 October 2021 9:08
- Forum: dzVents
- Topic: thermostat [Solved]
- Replies: 13
- Views: 1973
Re: thermostat [Solved]
What I just didn’t do. Thanks. Why setpoint does`t work?besix wrote: ↑Saturday 02 October 2021 8:29 ChangetoCode: Select all
if (item.isTimer) then domoticz.devices(3).SetPoint= 26
Code: Select all
if (item.isTimer) then domoticz.devices(3).updateSetPoint(26)
- Saturday 02 October 2021 6:12
- Forum: dzVents
- Topic: thermostat [Solved]
- Replies: 13
- Views: 1973
thermostat [Solved]
Hello there. I have thermostat and would like to heat and cool in time. I wrote these script but can`t change setpoint from it. local timer1 = 'every minute' --'at 06:00' return { on = { timer = { timer1} }, logging = { level = domoticz.LOG_DEBUG }, execute = function(domoticz,item,devices) if (item ...
- Monday 02 March 2020 10:11
- Forum: iOS
- Topic: Homebridge gives HTTP Status code 401 when starting
- Replies: 5
- Views: 9330
Re: Homebridge gives HTTP Status code 401 when starting
Ok, I found the solution myself. If someone else encounters the same issue: you have to provide userid/password in de config.json file, even when you exclude local addresses from the need of authentication. To provide userid and password in de config.json, change the server rule to: "server ...