In this case you will need an additional selection for each time, if it is a weekend or not. Due to this reason of simplicity I’ve included “activity flag”. You need in this case two automations with my blueprint: one for the weekend, and one for the workdays.
As activity-flag you select the binary_sensor for the weekend. In my case it is:
binary_sensor:
- platform: workday
country: DE
workdays: [mon, tue, wed, thu, fri]
excludes: [sat, sun, holiday]
In the temperature-profile for the weekend you set “active when” to “off”, in the temperature-profile for workday you set “active when” to “on”.
If you use “binary_sensor” you have to change within the blueprint “input_boolean” to “binary_sensor”
active_flag:
name: Activity flag
description: Binary_sensor as condition for execution
selector:
entity:
domain: binary_sensor
If you want to use this blueprint to set 2 temperatures only, this blueprint is probably “overkill”
cheers