Additional Fixes Steady Read Stream of Utar Data

This commit is contained in:
Václav Španinger 2024-12-27 15:04:48 +01:00
parent dd7540b8bb
commit e8cd4a8f66
4 changed files with 166 additions and 39 deletions

View File

@ -9,11 +9,10 @@ Example:
sensor: sensor:
- platform: serial_csv - platform: serial_csv
uart_id: my_uart # optional uart_id: my_uart # optional
sensors: bed_temperature:
- index: 0 name: Current Bed Temp
name: First value ext_temperature:
- index: 3 name: Current Ext Temp
name: Fourth value
``` ```

View File

@ -6,32 +6,134 @@ namespace esphome {
static const char *TAG = "marlin2"; static const char *TAG = "marlin2";
void Marlin2::setup() { void Marlin2::setup() {
this->write_str("\r\n\r\nM155 S10\r\n"); MarlinOutput.reserve(256);
ESP_LOGV(TAG, "M155 S10"); MarlinOutput = "";
ESP_LOGD(TAG, "M155 S10");
write_str("\r\n\r\nM155 S10\r\n");
write_str("\r\n\r\nM117 Hello World!\r\n");
flush();
} }
void Marlin2::loop() { void Marlin2::update() {
while (this->available()) { while (available()) {
uint8_t c; char c = read();
this->read_byte(&c); if( c == '\n' || c == '\r' ) {
process_line();
if (c == '\r') } else {
continue; MarlinOutput += c;
if (c == '\n')
this->parse_values_();
else
this->rx_message_.push_back(c);
} }
} }
void Marlin2::parse_values_() { if(millis() - millisProgress > 15000 ) {
std::string s(this->rx_message_.begin(), this->rx_message_.end()); millisProgress = millis();
ESP_LOGV(TAG, s);
ESP_LOGD(TAG, "M27");
ESP_LOGD(TAG, "M31");
write_str("M27\r\nM31\r\n");
}
} }
void Marlin2::dump_config() { void Marlin2::process_line() {
ESP_LOGCONFIG(TAG, "Serial CSV Reader"); if(MarlinOutput.size() < 3) {
MarlinOutput="";
return;
}
if(!MarlinOutput.compare("ok") || !MarlinOutput.compare(" ok")) {
MarlinOutput="";
return;
}
//Parse periodic Temperature read out message
if(
MarlinOutput.find(" T:") == 0 ||
MarlinOutput.find("T:") == 0 ||
MarlinOutput.find("ok T:") == 0 ||
MarlinOutput.find(" ok T:") == 0
) {
float ext_temperature, ext_set_temperature, bed_temperature, bed_set_tempertaure;
if (process_temp_msg(&ext_temperature, &ext_set_temperature, &bed_temperature, &bed_set_tempertaure) != 0) {
//bed_temperature_sensor->publish_state(bed_temperature);
// bed_temperature->publish_state(bed_set_tempertaure);
//ext_temperature_sensor->publish_state(ext_temperature);
// ext_temperature->publish_state(ext_set_temperature);
ESP_LOGD(TAG, "Bed Temperature=%.1f°C Ext Temperature=%.1f°C ", bed_temperature, ext_temperature);
}
//reset string for next line
MarlinOutput="";
return;
}
//Parse Progress of the print
if(MarlinOutput.find("SD printing byte") == 0 ) {
float progress = process_progress_msg();
//print_progress_sensor->publish_state(progress);
ESP_LOGD(TAG, "progress=%.1f", progress);
//reset string for next line
MarlinOutput="";
return;
}
//Parse Printitme
if(MarlinOutput.find("echo:Print time: ") == 0) {
int d=0, h=0, m=0, s=0;
unsigned long current=0, remaining=0;
if (process_print_time_msg(&d, &h, &m, &current, &remaining) != 0) {
}
//reset string for next line
MarlinOutput="";
return;
}
ESP_LOGD(TAG, "#%s#",MarlinOutput.c_str());
MarlinOutput="";
return;
}
int Marlin2::process_temp_msg(float* ext_temperature, float* ext_set_temperature, float* bed_temperature, float* bed_set_temperature) {
float dc;
while(MarlinOutput.find(' ') != std::string::npos)
MarlinOutput.erase(MarlinOutput.find(' '), 1);
while(MarlinOutput.find("ok") != std::string::npos)
MarlinOutput.erase(MarlinOutput.find("ok"), 2);
if(sscanf(MarlinOutput.c_str() ,"T:%f/%fB:%f/%f", ext_temperature, ext_set_temperature, bed_temperature, bed_set_temperature) == 4 )
return 1;
if(sscanf(MarlinOutput.c_str() ,"T:%f/%f(%f)B:%f/%f(%f)", ext_temperature, ext_set_temperature, &dc, bed_temperature, bed_set_temperature, &dc) == 6 )
return 2;
if(sscanf(MarlinOutput.c_str() ,"T:%f/%fT0:%f/%fT1:%f/%fB:%f/%f", ext_temperature, ext_set_temperature, &dc, &dc, &dc, &dc, bed_temperature, bed_set_temperature) == 8 )
return 3;
if(sscanf(MarlinOutput.c_str() ,"T0:%f/%fT1:%f/%fB:%f/%f", ext_temperature, ext_set_temperature, &dc, &dc, bed_temperature, bed_set_temperature) == 6 )
return 4;
return 0;
}
float Marlin2::process_progress_msg(){
float current = std::stoi(MarlinOutput.substr(17));
float total = std::stoi(MarlinOutput.substr(MarlinOutput.find('/')+1));
if (total==0) {
return 0.0;
}
return ((float) current / (float) total) * 100.0;
}
int Marlin2::process_print_time_msg(int* d, int* h, int* m, unsigned long* current, unsigned long* remaining){
return 0;
} }
} // namespace esphome } // namespace esphome

View File

@ -6,21 +6,26 @@
namespace esphome { namespace esphome {
class Marlin2 : public Component, public uart::UARTDevice { class Marlin2 : public PollingComponent , public uart::UARTDevice {
public: public:
void setup() override; void setup() override;
float get_setup_priority() const override { return setup_priority::LATE; } float get_setup_priority() const override { return setup_priority::LATE; }
void loop() override; void update() override;
void dump_config() override;
void add_sensor(int index, sensor::Sensor *sens) {
this->sensors_.push_back(std::make_pair(index, sens));
}
protected: protected:
void parse_values_(); void process_line();
std::vector<uint8_t> rx_message_; int process_temp_msg(float* ext_temperature, float* ext_set_temperature, float* bed_temperature, float* bed_set_temperature);
std::vector<std::pair<int, sensor::Sensor *>> sensors_; float process_progress_msg();
int process_print_time_msg(int* d, int* h, int* m, unsigned long* current, unsigned long* remaining)
std::string MarlinOutput;
sensor::Sensor *bed_temperature_sensor;
sensor::Sensor *ext_temperature_sensor;
sensor::Sensor *print_progress_sensor;
private:
unsigned long millisProgress=0;
}; };
} // namespace esphome } // namespace esphome

View File

@ -22,6 +22,9 @@ CODEOWNERS = ["@jonatanrek"]
DEPENDENCIES = ['uart'] DEPENDENCIES = ['uart']
CONF_BED_TEMPERATURE = "bed_temperature" CONF_BED_TEMPERATURE = "bed_temperature"
CONF_EXT_TEMPERATURE = "ext_temperature"
CONF_PROGRESS = "progress"
Marlin2 = cg.esphome_ns.class_('Marlin2', cg.Component, sensor.Sensor, uart.UARTDevice) Marlin2 = cg.esphome_ns.class_('Marlin2', cg.Component, sensor.Sensor, uart.UARTDevice)
@ -34,6 +37,18 @@ CONFIG_SCHEMA = uart.UART_DEVICE_SCHEMA.extend(
device_class=DEVICE_CLASS_TEMPERATURE, device_class=DEVICE_CLASS_TEMPERATURE,
state_class=STATE_CLASS_MEASUREMENT, state_class=STATE_CLASS_MEASUREMENT,
), ),
cv.Optional(CONF_EXT_TEMPERATURE): sensor.sensor_schema(
unit_of_measurement=UNIT_CELSIUS,
accuracy_decimals=1,
device_class=DEVICE_CLASS_TEMPERATURE,
state_class=STATE_CLASS_MEASUREMENT,
),
cv.Optional(CONF_PROGRESS): sensor.sensor_schema(
unit_of_measurement=UNIT_CELSIUS,
accuracy_decimals=1,
device_class=DEVICE_CLASS_TEMPERATURE,
state_class=STATE_CLASS_MEASUREMENT,
),
} }
) )
@ -44,3 +59,9 @@ async def to_code(config):
if CONF_BED_TEMPERATURE in config: if CONF_BED_TEMPERATURE in config:
await sensor.new_sensor(config[CONF_BED_TEMPERATURE]) await sensor.new_sensor(config[CONF_BED_TEMPERATURE])
if CONF_EXT_TEMPERATURE in config:
await sensor.new_sensor(config[CONF_EXT_TEMPERATURE])
if CONF_PROGRESS in config:
await sensor.new_sensor(config[CONF_PROGRESS])