Search found 8 matches
- Friday 23 June 2023 23:53
- Forum: Switches and Scenes
- Topic: Problem with activation device in group [solved]
- Replies: 1
- Views: 1491
Re: Problem with activation device in group
Been bitten by this before and corrected by waaren in 2020 . Also should have read the post just before this one! "I learn fast if you repeat the lesson many many times" . The problem is that Tasmota sends an MQTT message that only updates the status of the virtual activation device. One solution ...
- Friday 23 June 2023 8:20
- Forum: Switches and Scenes
- Topic: Problem with activation device in group [solved]
- Replies: 1
- Views: 1491
Problem with activation device in group [solved]
As often recommended in the forum (example: emontnemery's last sentence ), I have created a group with a single device "Garage" and a single activation device "Balcony". Both correspond to outside lights. When the virtual balcony light is turned on in the Domoticz Web interface, the virtual garage ...
- Wednesday 05 April 2023 17:32
- Forum: dzVents
- Topic: How to get the temperature display units needed for updating the humidity status?
- Replies: 4
- Views: 801
Re: How to get the temperature display units needed for updating the humidity status?
Sorry for the late reply - just saw the "Notify me when a reply is posted" checkbox. @RonkA: Is chatgpt hell-bent on taking over everything? In any case, that script seems well done, but I won't be trying it because it does require an extra HTTP request each time a temperature is updated. The script ...
- Thursday 23 March 2023 0:16
- Forum: dzVents
- Topic: How to get the temperature display units needed for updating the humidity status?
- Replies: 4
- Views: 801
How to get the temperature display units needed for updating the humidity status?
The short humid_status.lua dzVents script shown below updates the humidity status of any Temp + Humidity [ + Baro ] sensor added to the trigger devices list by indirectly using the utils.humidityStatus() function added in V3.0.15. It relies on a user variable named 'TemperatureUnit' to convert, if ...
- Monday 08 August 2022 23:59
- Forum: Installation, Compiling, Permissions, Security and Starting
- Topic: Domoticz installation in Linux stuck on 'welcome' dialog
- Replies: 5
- Views: 2548
Re: Domoticz installation in Linux stuck on 'welcome' dialog
Same problem here with Armbian 22.08.0 Jimmy (ie Ubuntu 22.04.1 LTS) on an Arm 64-bit cpu. Dowloading the script and then executing it is a way around this problem: $ curl -L install.domoticz.com > install.sh $ chmod +x install.sh $ sudo ./install.sh However Domoticz will not run because of the ...
- Saturday 26 December 2020 5:14
- Forum: Show your projects
- Topic: Physical interface with only an OLED display, a rotary encoder and an ESP8266
- Replies: 0
- Views: 744
Physical interface with only an OLED display, a rotary encoder and an ESP8266
This project, Domoticz Button , was inspired by a a similar project by David Conran (crankyoldgit) Kitchen Button , that uses the same hardware to control Tasmota switches directly. Instead, Domoticz Button controls Domoticz virtual devices which in turn control real IoT devices that may or may not ...
- Saturday 28 November 2020 22:23
- Forum: Switches and Scenes
- Topic: Switch script does not executed when command come via MQTT
- Replies: 5
- Views: 1706
Re: Switch script does not executed when command come via MQTT
Duh!!! Feel stupid. Many thanks yet again to waaren for his help. 2023-06-23: The MQTT publish message should be sent to the MQTT broker: ~$ mosquitto_pub -h <[b]MQTT_IP[/b]> -t domoticz/in -m {"command": "switchlight", "idx": 44, "switchcmd": "On" } waaren was just quoting my initial error made ...
- Wednesday 25 November 2020 2:50
- Forum: Switches and Scenes
- Topic: Switch script does not executed when command come via MQTT
- Replies: 5
- Views: 1706
Re: Switch script does not executed when command come via MQTT
Someone contacted me about the same problem and we both investigated and came up with the same asymmetry reported by bebeno. A virtual On/Off switch created with Dummy hardware will execute its On Action and Off Action http request when turned on or off in the Domoticz Web server or in response to ...