mirror of
https://github.com/esphome/esphome.git
synced 2025-03-17 22:15:17 +01:00
12 lines
246 B
C++
12 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
|