mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 12:43:28 +02:00
2712c44004
* Update pio dependencies * Platformio 4 * Fixes * Update platformio_api.py * Lint
26 lines
739 B
Python
26 lines
739 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('TinyGPSPlus', '1.0.2')
|