mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 12:43:28 +02:00
83fa51a580
* GSP Time * GPS Time * Lint * Multi conf
24 lines
683 B
Python
24 lines
683 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)
|
|
cg.add_library('TinyGPSPlus', '1.0.2')
|