Replies: 9 comments 8 replies
-
I'm using the Scheduler integration for my climate automations, it makes the basic rules very easy to manage for my non-programming family members. It also has conditions but I haven't used that yet. Personally I would keep automations out of the plugin, it causes unnecessary complexity that can easily be handled by home assistant itself. |
Beta Was this translation helpful? Give feedback.
-
@Cycor @Denis-blr @Se7enair Like climate:
- platform: ai_thermostat
name: room
thermostat: climate.tvr
temperature_sensor: sensor.temperature
window_sensors: group.office_windows #if this is not set, the window open detection is off
weather: weather.xxx #if this is set, the outdoor_sensor is ignored, remove the outdoor_sensor config!
outdoor_sensor: sensor.outdoor_temperature #if you want to use it, remove the weather config!
off_temperature: 20
window_off_delay: 0
valve_maintenance: false
scheduler:
- name: Night
temperature: 19
start: "22:00"
end: "07:00"
- name: Day
temperature: 17
start: "13:00"
end: "14:00"
- name: anyotherword
temperature: 12
weekdays:
- mon
- tue
- wed
- thu
- fri
start: "15:00"
end: "16:00" |
Beta Was this translation helpful? Give feedback.
-
Great solution!
How many gaps will the array be divided into? I think that a maximum of 5
gaps will be enough, everyone will decide whether he needs to use 2 or 3 or
5 gaps.
пт, 17 дек. 2021 г. в 20:38, Tobias Haber ***@***.***>:
… @Cycor <https://github.com/Cycor> @Denis-blr
<https://github.com/Denis-blr>
Simple solution, what if i replace the night mode thing with a array
configuration style?:
Like
climate:
- platform: ai_thermostat
name: room
thermostat: climate.tvr
temperature_sensor: sensor.temperature
window_sensors: group.office_windows #if this is not set, the window open detection is off
weather: weather.xxx #if this is set, the outdoor_sensor is ignored, remove the outdoor_sensor config!
outdoor_sensor: sensor.outdoor_temperature #if you want to use it, remove the weather config!
off_temperature: 20
window_off_delay: 0
valve_maintenance: false
scheduler:
- name: Night
temperature: 19
start: "22:00"
end: "07:00"
- name: Day
temperature: 17
start: "13:00"
end: "14:00"
- name: anyotherword
temperature: 12
start: "15:00"
end: "16:00"
—
Reply to this email directly, view it on GitHub
<#93 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ATVNTK5UJ523ZVUV2HHCVETURNYPZANCNFSM5J4CDIKQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
You are receiving this because you were mentioned.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
-
Toby I totally agree with you that adding a time period and specifying a
temperature is a job for HA automation. Your integration does a completely
different job. I appreciate your work!
scheduler:
- name: Night
temperature: 19
start: "22:00"
end: "07:00"
- name: Day
temperature: 17
start: "13:00"
end: "14:00"
- name: anyotherword
temperature: 12
start: "15:00"
end: "16:00."
I believe that this entry will not make your work worse, but only allow
users to trust their devices 100% to the AI THERMOSTAT for Zigbee2MQTT
project.
Your HELP is very well written, setting up the thermal head is not
difficult.
вс, 19 дек. 2021 г. в 03:01, Tobias Haber ***@***.***>:
… I mean, this option will make it extream complicated for most users,
must look like this:
scheduler:
- name: Night
trigger: sensor.entiy
state: away
temperature: 19
start: "22:00"
end: "07:00"
And this can only handly a if than operation, not or when, or combine
multiple other sensors or states, so its too much, to be honest, there are
probably too many problems for it. So if someone needs more than a daily
routine, it must be handeled by a HA Automation.
But for the weekdays, i have a update (look at the edit post)
—
Reply to this email directly, view it on GitHub
<#93 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ATVNTKYREZK2RNZOP26KQITURUOG7ANCNFSM5J4CDIKQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
You are receiving this because you were mentioned.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
-
I can totally understand when somebody says thre scheduling should be done in homeassistant. There are a few great solutions for schedules out there. Just wanted to place a idea and waited if it maybe grows. |
Beta Was this translation helpful? Give feedback.
-
@KartoffelToby |
Beta Was this translation helpful? Give feedback.
-
Hi, |
Beta Was this translation helpful? Give feedback.
-
Hi, please tell me, will we have a chance to test the final version of release 1.0 this season? Because the heating season will be over soon) |
Beta Was this translation helpful? Give feedback.
-
Maybe somebody could find interesting an alternative solution for schedules that I’m using and you can create and modify directly in UI (without having to change yaml code) |
Beta Was this translation helpful? Give feedback.
-
I'am already using your code. Very nice, saves me a lot of work.
But for now I have to use "schedy" additionally to that. Schedy is doing all the scheduling for me.
So I use more than a simple day and night schedule. For example, when nobody is at home, the heating is running on a lower temperature. But when somebody is coming home, it should already warm, so I need to start the heating before I arrive at home.
Or the bathroom, it is heated only on specific times and somebody needs to be home. Otherwise it will stay on the lower temperature.
Is this something you could imagine to integrate? If yes, this will be really a "better thermostat" and I can give you information how about I realized my heating control.
For now, I can show you my schedy_heating.yaml, but there are few more automations which are controlling the input_booleans.
Beta Was this translation helpful? Give feedback.
All reactions