mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-20 04:53:28 +02:00
69879920eb
* Add black Update pre commit Update pre commit add empty line * Format with black
32 lines
814 B
Python
32 lines
814 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import uart
|
|
from esphome.const import CONF_ID
|
|
|
|
DEPENDENCIES = ["uart"]
|
|
|
|
gps_ns = cg.esphome_ns.namespace("gps")
|
|
GPS = gps_ns.class_("GPS", cg.Component, uart.UARTDevice)
|
|
GPSListener = gps_ns.class_("GPSListener")
|
|
|
|
CONF_GPS_ID = "gps_id"
|
|
MULTI_CONF = True
|
|
CONFIG_SCHEMA = (
|
|
cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.declare_id(GPS),
|
|
}
|
|
)
|
|
.extend(cv.COMPONENT_SCHEMA)
|
|
.extend(uart.UART_DEVICE_SCHEMA)
|
|
)
|
|
|
|
|
|
def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
yield cg.register_component(var, config)
|
|
yield uart.register_uart_device(var, config)
|
|
|
|
# https://platformio.org/lib/show/1655/TinyGPSPlus
|
|
cg.add_library("1655", "1.0.2") # TinyGPSPlus, has name conflict
|