mirror of
https://github.com/esphome/esphome.git
synced 2026-08-22 22:26:21 +00:00
[uptime] Skip the timestamp sensor source when no time component is configured (#18535)
This commit is contained in:
@@ -10,6 +10,7 @@ from esphome.const import (
|
|||||||
STATE_CLASS_TOTAL_INCREASING,
|
STATE_CLASS_TOTAL_INCREASING,
|
||||||
UNIT_SECOND,
|
UNIT_SECOND,
|
||||||
)
|
)
|
||||||
|
from esphome.core import CORE
|
||||||
|
|
||||||
uptime_ns = cg.esphome_ns.namespace("uptime")
|
uptime_ns = cg.esphome_ns.namespace("uptime")
|
||||||
UptimeSecondsSensor = uptime_ns.class_(
|
UptimeSecondsSensor = uptime_ns.class_(
|
||||||
@@ -59,3 +60,11 @@ async def to_code(config):
|
|||||||
if time_id_config := config.get(CONF_TIME_ID):
|
if time_id_config := config.get(CONF_TIME_ID):
|
||||||
time_id = await cg.get_variable(time_id_config)
|
time_id = await cg.get_variable(time_id_config)
|
||||||
cg.add(var.set_time(time_id))
|
cg.add(var.set_time(time_id))
|
||||||
|
|
||||||
|
|
||||||
|
def FILTER_SOURCE_FILES() -> list[str]:
|
||||||
|
# uptime_timestamp_sensor.cpp is fully #ifdef'd on USE_TIME; skip it
|
||||||
|
# when no time component is configured.
|
||||||
|
if not any(define.name == "USE_TIME" for define in CORE.defines):
|
||||||
|
return ["uptime_timestamp_sensor.cpp"]
|
||||||
|
return []
|
||||||
|
|||||||
Reference in New Issue
Block a user