mirror of
https://github.com/esphome/esphome.git
synced 2025-10-28 05:33:53 +00:00
27 lines
917 B
Python
27 lines
917 B
Python
import esphome.codegen as cg
|
|
from esphome.components import uart
|
|
from esphome.config_helpers import filter_source_files_from_platform
|
|
from esphome.const import PlatformFramework
|
|
|
|
nextion_ns = cg.esphome_ns.namespace("nextion")
|
|
Nextion = nextion_ns.class_("Nextion", cg.PollingComponent, uart.UARTDevice)
|
|
nextion_ref = Nextion.operator("ref")
|
|
|
|
CONF_NEXTION_ID = "nextion_id"
|
|
CONF_PUBLISH_STATE = "publish_state"
|
|
CONF_SEND_TO_NEXTION = "send_to_nextion"
|
|
|
|
FILTER_SOURCE_FILES = filter_source_files_from_platform(
|
|
{
|
|
"nextion_upload_arduino.cpp": {
|
|
PlatformFramework.ESP32_ARDUINO,
|
|
PlatformFramework.ESP8266_ARDUINO,
|
|
PlatformFramework.RP2040_ARDUINO,
|
|
PlatformFramework.BK72XX_ARDUINO,
|
|
PlatformFramework.RTL87XX_ARDUINO,
|
|
PlatformFramework.LN882X_ARDUINO,
|
|
},
|
|
"nextion_upload_idf.cpp": {PlatformFramework.ESP32_IDF},
|
|
}
|
|
)
|