Hive Boost Button?

Hi

I have the Hive Integration in HA which works fine with the default card but the boost option seems to default to 0.5 degrees above current and for 30 minutes only.

I want to create a new button which boosts for 1 hour at 22 degrees but have no clue where to begin?

If you go to dev tools and actions, you can use Hive: Boost heating on

Once set up you can copy to a script or button.

This is yaml that needs pasting into a script or button:

action: hive.boost_heating_on
data:
  time_period: "01:00:00"
  temperature: 22

Thanks, I am obviously doing something wrong here:

show_name: true
show_icon: true
type: button
tap_action:
  action: hive.boost_heating_on
data:
  time_period: "01:00:00"
  temperature: 22

This gives me an error, apologies I am very new to this.

Thanks

Just need the data: section 2 spaces right

show_name: true
show_icon: true
type: button
tap_action:
  action: hive.boost_heating_on
  data:
    time_period: "01:00:00"
    temperature: 22

Hmmm, I still get this error:

Visual editor not supported

  • The provided value for ‘tap_action.action’ is not supported by the visual editor. We support (one of "none","toggle","more-info","call-service","perform-action","url","navigate","assist") but received (“hive.boost_heating_on”).
  • Key ‘tap_action.data’ is not expected or not supported by the visual editor.

You can still edit your config using YAML.

Give this a try, change the climate entity to match yours

show_name: true
show_icon: true
type: button
tap_action:
  action: perform-action
  perform_action: hive.boost_heating_on
  target:
    entity_id: climate.alices_room
  data:
    temperature: 22
    time_period: "01:00:00"
entity: climate.alices_room

Are you doing this in the UI or YAML ?

This is UI:

Ignore the AM on the time period, its a bug

This worked perfectly, thank you so much!

Excellent, can you mark the post as solved