E0773: Controlar el LED del AP Unifi desde Home Assistant

Una rareza domótica.

E0773: Controlar el LED del AP Unifi desde Home Assistant

Recojo el guante de uno de los usuarios del grupo de Telegram del podcast. He estado enredando para conseguir controlar el color y el encendido y apagado del LED de mi punto de acceso WiFi de Unifi.

GitHub - patagonaa/homeassistant-unifi-led: control unifi access point LEDs via Home Assistant
control unifi access point LEDs via Home Assistant - GitHub - patagonaa/homeassistant-unifi-led: control unifi access point LEDs via Home Assistant
Controlling Ubiquiti U6-LR WiFi Access Point LED Colour in Home Assistant - Jamie Jones
Some of the newer access points from Ubiquiti feature an RGB status LED, normally used to indicate whether the access point is functioning correctly. Out of the box, Ubiquiti allow you to set a…
Tarjeta de control en HA
title: AP WiFi
type: vertical-stack
cards:
  - type: custom:mushroom-light-card
    entity: light.u6_lr_led
    icon: mdi:alarm-light-outline
    icon_color: blue
    layout: vertical
    fill_container: false
    primary_info: name
    secondary_info: none
    use_light_color: false
    show_brightness_control: false
    show_color_temp_control: false
    show_color_control: false
    collapsible_controls: false
    double_tap_action:
      action: none
  - square: false
    type: grid
    cards:
      - show_name: true
        show_icon: false
        type: button
        tap_action:
          action: call-service
          service: shell_command.u6lr_white
          target: {}
        name: Blanco
        icon: mdi:palette
        show_state: false
        hold_action:
          action: none
      - show_name: true
        show_icon: false
        type: button
        tap_action:
          action: call-service
          service: shell_command.u6lr_blue
          target: {}
        name: Azul
        icon: mdi:palette
        show_state: false
        hold_action:
          action: none
      - show_name: true
        show_icon: false
        type: button
        tap_action:
          action: call-service
          service: shell_command.u6lr_red
        name: Rojo
        icon: mdi:palette
        show_state: false
        hold_action:
          action: none
      - show_name: true
        show_icon: false
        type: button
        tap_action:
          action: call-service
          service: shell_command.u6lr_green
          target: {}
        name: Verde
        icon: mdi:palette
        show_state: false
        hold_action:
          action: none
    columns: 4