ESPHomeMarlin2/marlin2.cpp

38 lines
863 B
C++
Raw Normal View History

2024-12-27 10:47:42 +00:00
#include "marlin2.h"
#include "esphome/core/log.h"
namespace esphome {
namespace serial {
static const char *TAG = "serial.marlin2";
void Marlin2::loop() {
2024-12-27 11:02:11 +00:00
// while (this->available()) {
// uint8_t c;
// this->read_byte(&c);
2024-12-27 10:47:42 +00:00
2024-12-27 11:02:11 +00:00
// if (c == '\r')
// continue;
2024-12-27 10:47:42 +00:00
2024-12-27 11:02:11 +00:00
// if (c == '\n')
// this->parse_values_();
// else
// this->rx_message_.push_back(c);
// }
2024-12-27 10:47:42 +00:00
}
2024-12-27 11:02:11 +00:00
// void Marlin2::parse_values_() {
// std::string s(this->rx_message_.begin(), this->rx_message_.end());
// ESP_LOGV(TAG, s);
// }
// void Marlin2::dump_config() {
// ESP_LOGCONFIG("", "Serial CSV Reader");
// for (auto sens : this->sensors_) {
// ESP_LOGCONFIG(TAG, "Index %d", sens.first);
// LOG_SENSOR(TAG, "", sens.second);
// }
// }
2024-12-27 10:47:42 +00:00
} // namespace serial
} // namespace esphome