mirror of
https://github.com/esphome/esphome.git
synced 2026-03-19 17:56:48 +01:00
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
|