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
13 lines
246 B
C++
13 lines
246 B
C++
#include "gps.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace gps {
|
|
|
|
static const char *TAG = "gps";
|
|
|
|
TinyGPSPlus &GPSListener::get_tiny_gps() { return this->parent_->get_tiny_gps(); }
|
|
|
|
} // namespace gps
|
|
} // namespace esphome
|