From f213e1a411b86d77dafae30e080034729f0b8d50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Koek?= Date: Tue, 20 Feb 2024 16:27:14 +0000 Subject: [PATCH] Update __init__.py --- esphome/components/lora/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/esphome/components/lora/__init__.py b/esphome/components/lora/__init__.py index 3881490a5c..52bd254252 100644 --- a/esphome/components/lora/__init__.py +++ b/esphome/components/lora/__init__.py @@ -5,6 +5,7 @@ from esphome.components import sensor, text_sensor, uart from esphome.const import * DEPENDENCIES = ["uart"] +AUTO_LOAD = ["uart", "sensor", "text_sensor"] MULTI_CONF = True lora_ns = cg.esphome_ns.namespace("lora")