Search found 7 matches
- Friday 13 September 2024 21:41
- Forum: Z-Wave
- Topic: Cool SP / Fan Mode not discovered, is there a workaround ?
- Replies: 0
- Views: 1452
Cool SP / Fan Mode not discovered, is there a workaround ?
Domoticz running with ZWaveJS and MQTT AutoDiscover. All works well except Domoticz does not discover "Cooling SetPoint" or "Fan Mode" on thermostat. I only need to set these two devices once per day. Is there a method to use cron thru MQTT or ZWaveJS and bypass Domoticz ? Or even scheduling a scene ...
- Wednesday 28 August 2019 18:48
- Forum: LUA
- Topic: Trying to get URL data and load it to a text sensor
- Replies: 2
- Views: 1126
Re: Trying to get URL data and load it to a text sensor
Thanks emme, I'll give that a try later this week.
- Wednesday 28 August 2019 7:48
- Forum: LUA
- Topic: Trying to get URL data and load it to a text sensor
- Replies: 2
- Views: 1126
Trying to get URL data and load it to a text sensor
My goal is to update a text sensor with my most recent Public IP Address. I am currently using the RPi's CRON to email myself the info... 4 * * * * wget http://api.ipify.org -O latest_ip.txt 5 * * * * mpack -s "Latest IP Address" /home/pi/latest_ip.txt [email protected] However, I'd rather do ...
- Saturday 04 May 2019 0:32
- Forum: Suggestions
- Topic: Custom Tabs for "Log" page
- Replies: 0
- Views: 537
Custom Tabs for "Log" page
Current log page offers tabs for "All", "Status", and "Error".
It also offers a Filter feature.
I was wondering about adding an option for custom tabs, that could use custom (and often used) filter criteria.
Is this possible ?
Thanks in advance,
Steve
It also offers a Filter feature.
I was wondering about adding an option for custom tabs, that could use custom (and often used) filter criteria.
Is this possible ?
Thanks in advance,
Steve
- Thursday 17 January 2019 0:09
- Forum: Heating/cooling
- Topic: Script to update temp set points
- Replies: 8
- Views: 2218
Re: Script to update temp set points
Waaren,
This is great, thank you for the info.
I suspected this might go the route of DZVents.
I'll give this a test tonight.
Thanks again.
This is great, thank you for the info.
I suspected this might go the route of DZVents.
I'll give this a test tonight.
Thanks again.
- Wednesday 16 January 2019 17:54
- Forum: Heating/cooling
- Topic: Script to update temp set points
- Replies: 8
- Views: 2218
Re: Script to update temp set points
Thank you for your replies. Here is the current script: commandArray = {} local cool = tostring(math.max(uservariables['HVAC Cool SP'] + uservariables['Temperature Adjustment'],22)) local heat = tostring(math.min(uservariables['HVAC Heat SP'] + uservariables['Temperature Adjustment'],23)) if os.date ...
- Wednesday 16 January 2019 6:51
- Forum: Heating/cooling
- Topic: Script to update temp set points
- Replies: 8
- Views: 2218
Script to update temp set points
New to this forum, thanks for having me. Also newly transitioned from Vera to Domoticz / Raspberry Pi, and have some basic knowledge of lua. I have two thermostats, so there are 4 setpoints (heat & cool) to regularly update via Domoticz. Currently I update uservariables with the setpoint values at ...