alias: Lounge - Resume Automations
description: >
  Clears manual override so the motion + lux automation can take control again.

###############################################################################
# WHAT THIS SCRIPT DOES
#
# This is the “make it normal again” button.
#
# When someone has manually changed the light (for example, set it to red),
# the manual override helper is turned ON.
#
# That blocks the motion automation from touching the light.
#
# Running this script:
# - Turns OFF input_boolean.lounge_manual_override
# - Allows normal presence + lux behaviour to resume
#
# WHAT YOU MUST CUSTOMISE
# - input_boolean.lounge_manual_override (if you renamed it)
###############################################################################

mode: single

sequence:
  - service: input_boolean.turn_off
    target:
      entity_id: input_boolean.lounge_manual_override
