Skip to content

Files

Latest commit

cdda156 · Nov 1, 2020

History

History
139 lines (110 loc) · 4.73 KB

067771.md

File metadata and controls

139 lines (110 loc) · 4.73 KB
title description
Legrand 067771 control via MQTT
Integrate your Legrand 067771 via Zigbee2MQTT with whatever smart home infrastructure you are using without the vendors bridge or gateway.

To contribute to this page, edit the following file

Legrand 067771

| Model | 067771 | | Vendor | Legrand | | Description | Wired switch without neutral | | Supports | on/off, brightness | | Picture | Legrand 067771 |

Notes

Device type specific configuration

How to use device type specific configuration

  • transition: Controls the transition time (in seconds) of on/off, brightness, color temperature (if applicable) and color (if applicable) changes. Defaults to 0 (no transition). Note that this value is overridden if a transition value is present in the MQTT command payload.

Model numbers

Model number depends on the country and the colour of the devices, for instance:

  • French models are branded as Céliane with Netatmo, and models for this device depends on the colour, with the following numbers: "0 677 21", "0 677 71" and "0 648 91".

  • Spanish models are branded as Legrand Valena Next, and models for this device depends on the colour, with the following numbers: "7 418 10", "7 418 40" and "7 418 70".

Other brand names depending on the country:

  • Availability for Céliane™ with Netatmo → France and Overseas territories, Greece, Poland, Hungary, Tunisia, Morocco, Ivory Coast, Czech Republic, Russia, Mauritius
  • Availability for Dooxie™ with Netatmo → France and Overseas territories
  • Availability for Mosaic™ with Netatmo → France and Overseas territories, Ivory Coast
  • Availability for Living Now™ with Netatmo → Italy, Belgium, Greece, Portugal, Lebanon, Israel, Chile, Peru, Mexico
  • Availability for Valena Allure™ with Netatmo → Greece, Germany, Austria, Poland, Slovakia, Bulgaria, Czech Republic, Hungary, Russia
  • Availability for Valena Life™ with Netatmo → Greece, Germany, Austria, Portugal, Poland, Slovakia, Bulgaria, Czech Republic, Hungary, Lituania, Russia
  • Availability for Valena Next™ with Netatmo → Spain, Belgium
  • Availability for Arteor™ with Netatmo → Australia, New Zealand, India, Malaysia, Lebanon, Mauritius, South Africa
  • Availability for Plexo™ with Netatmo → France and Overseas territories, Spain, Belgium
  • Availability for Modul'Up™ with Netatmo → France and Overseas territories

LED configuration

  • permanent_led: enable or disable the permanent blue LED. Values: ON / OFF (default)
  • led_when_on: enables the LED when the light is on. Values: ON / OFF (default)

Example of MQTT message payload to disable permanent LED and enable LED when the lights are on. This shouuld be sent to zigbee2mqtt/[FRIENDLY_NAME]/set:

{
    "permanent_led": "OFF",
    "led_when_on": "ON"
}

Dimmer

  • dimmer_enabled: enable or disable the dimming functions. Values: ON / OFF (default)

Example of MQTT message payload to enable dimming. This shouuld be sent to zigbee2mqtt/[FRIENDLY_NAME]/set:

{
    "dimmer_enabled": "ON"
}

Identify

Helps to identify the switch using the LED.

  • identify['effect']: only works for blink3 & fixed in effect. Values:

    • blink3
    • fixed
    • blinkgreen
    • blinkblue
  • identify['color']: only works for blink3 & fixed in effect. Values:

    • default
    • red
    • green
    • blue
    • lightblue
    • yellow
    • pink
    • white

Example of MQTT message payload to Identify the switch. This shouuld be sent to zigbee2mqtt/[FRIENDLY_NAME]/set:

{
  "identify": {
    "effect": "blink3",
    "color": "white"
  }
}

Manual Home Assistant configuration

Although Home Assistant integration through MQTT discovery is preferred, manual integration is possible with the following configuration:

{% raw %}

light:
  - platform: "mqtt"
    state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
    availability_topic: "zigbee2mqtt/bridge/state"
    brightness: true
    color_temp: false
    xy: false
    hs: false
    schema: "json"
    command_topic: "zigbee2mqtt/<FRIENDLY_NAME>/set"
    brightness_scale: 254
    effect: true
    effect_list: 
      - "blink"
      - "breathe"
      - "okay"
      - "channel_change"
      - "finish_effect"
      - "stop_effect"

sensor:
  - platform: "mqtt"
    state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
    availability_topic: "zigbee2mqtt/bridge/state"
    unit_of_measurement: "lqi"
    value_template: "{{ value_json.linkquality }}"
    icon: "mdi:signal"

{% endraw %}