1
mirror of https://github.com/home-assistant/core synced 2024-08-02 23:40:32 +02:00

Deprecate Raspberry Pi GPIO (ADR-0019) (#63503)

This commit is contained in:
Franck Nijhof 2022-01-05 23:35:41 +01:00 committed by GitHub
parent c88c3e9abb
commit 8c67963991
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,6 @@
"""Support for controlling GPIO pins of a Raspberry Pi."""
import logging
from RPi import GPIO # pylint: disable=import-error
from homeassistant.const import (
@ -16,9 +18,17 @@ PLATFORMS = [
Platform.SWITCH,
]
_LOGGER = logging.getLogger(__name__)
def setup(hass: HomeAssistant, config: ConfigType) -> bool:
"""Set up the Raspberry PI GPIO component."""
_LOGGER.warning(
"The Raspberry Pi GPIO integration is deprecated and will be removed "
"in Home Assistant Core 2022.6; 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"
)
def cleanup_gpio(event):
"""Stuff to do before stopping."""