From c88c3e9abb4c3c287608f117951dc8f9cef08d0c Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 5 Jan 2022 23:35:22 +0100 Subject: [PATCH] Deprecate pigpio Daemon PWM LED (ADR-0019) (#63504) --- homeassistant/components/rpi_gpio_pwm/light.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/homeassistant/components/rpi_gpio_pwm/light.py b/homeassistant/components/rpi_gpio_pwm/light.py index bd406e884e1..02444f902b4 100644 --- a/homeassistant/components/rpi_gpio_pwm/light.py +++ b/homeassistant/components/rpi_gpio_pwm/light.py @@ -78,6 +78,12 @@ def setup_platform( discovery_info: DiscoveryInfoType | None = None, ) -> None: """Set up the PWM LED lights.""" + _LOGGER.warning( + "The pigpio Daemon PWM LED integration is deprecated and will be removed " + "in Home Assistant Core 2022.4; this integration is removed under " + "Architectural Decision Record 0019, more information can be found here: " + "https://github.com/home-assistant/architecture/blob/master/adr/0019-GPIO.md" + ) leds = [] for led_conf in config[CONF_LEDS]: