Liebherr Night Mode Schedule

Liebherr Night Mode Schedule

Automatically enable night mode on your Liebherr refrigerator or freezer at bedtime and disable it in the morning for quieter overnight operation. Works with any Liebherr SmartDevice appliance that supports NightMode.

Open your Home Assistant instance and show the blueprint import dialog with a specific blueprint pre-filled.

What it does

  1. Turns on NightMode at your chosen bedtime (default 22:00)
  2. Turns off NightMode at your chosen morning time (default 07:00)
  3. NightMode silences appliance sounds, halts the IceMaker, and dims interior LED lighting

Inputs

Input Description Default
Night Mode Switch The Liebherr NightMode switch entity Required
Bedtime Time to enable night mode 22:00
Morning Time Time to disable night mode 07:00

Requirements

  • Liebherr integration configured with at least one appliance that supports NightMode

Blueprint import

blueprint:
  name: "Liebherr Night Mode Schedule"
  description: >-
    Automatically enable night mode at bedtime and disable it in the morning
    for quieter overnight operation.
  domain: automation
  input:
    night_mode_switch:
      name: "Night Mode Switch"
      description: "The Liebherr NightMode switch entity."
      selector:
        entity:
          domain: switch
          integration: liebherr
    bedtime:
      name: "Bedtime"
      description: "Time to enable night mode."
      default: "22:00:00"
      selector:
        time:
    morning_time:
      name: "Morning Time"
      description: "Time to disable night mode."
      default: "07:00:00"
      selector:
        time:

mode: single
triggers:
  - trigger: time
    at: !input bedtime
    id: night_mode_on
  - trigger: time
    at: !input morning_time
    id: night_mode_off
actions:
  - choose:
      - conditions:
          - condition: trigger
            id: night_mode_on
        sequence:
          - action: switch.turn_on
            target:
              entity_id: !input night_mode_switch
      - conditions:
          - condition: trigger
            id: night_mode_off
        sequence:
          - action: switch.turn_off
            target:
              entity_id: !input night_mode_switch

Thanks for sharing this! The schedule setup looks straightforward and really handy for overnight quiet mode.