Refactor Marlin2 component and add new features
- Updated __init__.py to include max_sd_files configuration option. - Refactored Marlin2 class to use new namespaces and improved structure. - Added support for binary sensors and select components in binary_sensor.py and select.py. - Enhanced sensor.py and text_sensor.py to include new configuration options for SD card file count and selected file. - Improved code readability and organization across multiple files.
This commit is contained in:
571
marlin2.cpp
571
marlin2.cpp
@@ -2,416 +2,433 @@
|
||||
#include "esphome/core/log.h"
|
||||
#include <string>
|
||||
|
||||
namespace esphome {
|
||||
namespace esphome::marlin2 {
|
||||
static const char *TAG = "marlin2";
|
||||
|
||||
|
||||
#ifdef USE_SENSOR
|
||||
void Marlin2::add_sensor(const std::string& sName, sensor::Sensor *sens) {
|
||||
sensors.push_back({sName, sens});
|
||||
void Marlin2::add_sensor(const std::string &name, sensor::Sensor *sens) {
|
||||
sensors_.push_back({name, sens});
|
||||
}
|
||||
|
||||
sensor::Sensor* Marlin2::find_sensor(std::string key) {
|
||||
for (const auto& pair : sensors) {
|
||||
if (key == std::string(pair.first)) { // Convert char* to std::string for comparison
|
||||
|
||||
sensor::Sensor *Marlin2::find_sensor(const std::string &key) {
|
||||
for (const auto &pair : sensors_) {
|
||||
if (key == pair.first) {
|
||||
return pair.second;
|
||||
}
|
||||
}
|
||||
return nullptr; // Return nullptr if no match is found
|
||||
return nullptr;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef USE_TEXT_SENSOR
|
||||
void Marlin2::add_text_sensor(const std::string& sName, text_sensor::TextSensor *sens) {
|
||||
text_sensors.push_back({sName, sens});
|
||||
void Marlin2::add_text_sensor(const std::string &name, text_sensor::TextSensor *sens) {
|
||||
text_sensors_.push_back({name, sens});
|
||||
}
|
||||
|
||||
text_sensor::TextSensor* Marlin2::find_text_sensor(std::string key) {
|
||||
for (const auto& pair : text_sensors) {
|
||||
if (key == std::string(pair.first)) { // Convert char* to std::string for comparison
|
||||
|
||||
text_sensor::TextSensor *Marlin2::find_text_sensor(const std::string &key) {
|
||||
for (const auto &pair : text_sensors_) {
|
||||
if (key == pair.first) {
|
||||
return pair.second;
|
||||
}
|
||||
}
|
||||
return nullptr; // Return nullptr if no match is found
|
||||
return nullptr;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef USE_SELECT
|
||||
void Marlin2::add_select(const std::string &name, select::Select *sel) {
|
||||
selects_.push_back({name, sel});
|
||||
}
|
||||
|
||||
select::Select *Marlin2::find_select(const std::string &key) {
|
||||
for (const auto &pair : selects_) {
|
||||
if (key == pair.first) {
|
||||
return pair.second;
|
||||
}
|
||||
}
|
||||
return nullptr;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef USE_BINARY_SENSOR
|
||||
void Marlin2::add_binary_sensor(const std::string &name, binary_sensor::BinarySensor *bs) {
|
||||
binary_sensors_.push_back({name, bs});
|
||||
}
|
||||
|
||||
binary_sensor::BinarySensor *Marlin2::find_binary_sensor(const std::string &key) {
|
||||
for (const auto &pair : binary_sensors_) {
|
||||
if (key == pair.first) {
|
||||
return pair.second;
|
||||
}
|
||||
}
|
||||
return nullptr;
|
||||
}
|
||||
#endif
|
||||
|
||||
void Marlin2::setup() {
|
||||
MarlinOutput.reserve(256);
|
||||
MarlinOutput = "";
|
||||
|
||||
MarlinResponseOutput.reserve(256);
|
||||
MarlinResponseOutput = "";
|
||||
|
||||
MarlinTime.reserve(32);
|
||||
PrinterState.reserve(32);
|
||||
|
||||
//ESP_LOGD(TAG, "M155 S10");
|
||||
|
||||
marlin_output_.reserve(256);
|
||||
marlin_response_output_.reserve(256);
|
||||
marlin_time_.reserve(32);
|
||||
printer_state_.reserve(32);
|
||||
|
||||
write_str("\r\n\r\nM155 S10\r\n");
|
||||
write_str("\r\n\r\nM117 ESP Home Connected!\r\n");
|
||||
flush();
|
||||
|
||||
|
||||
set_printer_state("IDLE");
|
||||
}
|
||||
|
||||
|
||||
void Marlin2::dump_config() {
|
||||
ESP_LOGCONFIG(TAG, "Marlin2:");
|
||||
this->check_uart_settings(115200);
|
||||
LOG_UPDATE_INTERVAL(this);
|
||||
}
|
||||
|
||||
void Marlin2::write(std::string gcode) {
|
||||
ESP_LOGD(TAG, "->GCODE: %s", gcode.c_str());
|
||||
write_str((std::string("\r\n\r\n") + gcode + std::string("\r\n")).c_str());
|
||||
flush();
|
||||
}
|
||||
|
||||
|
||||
void Marlin2::update() {
|
||||
while (available()) {
|
||||
char c = read();
|
||||
if( c == '\n' || c == '\r' ) {
|
||||
//ESP_LOGD(TAG, "#%s#",MarlinOutput.c_str());
|
||||
if (c == '\n' || c == '\r') {
|
||||
process_line();
|
||||
} else {
|
||||
MarlinOutput += c;
|
||||
marlin_output_ += c;
|
||||
}
|
||||
}
|
||||
|
||||
if(millis() - millisProgress > 15000 && print_progress != 100) {
|
||||
millisProgress = millis();
|
||||
|
||||
//ESP_LOGD(TAG, "M27");
|
||||
//ESP_LOGD(TAG, "M31");
|
||||
|
||||
|
||||
if (millis() - millis_progress_ > 15000 && print_progress_ != 100) {
|
||||
millis_progress_ = millis();
|
||||
write_str("M27\r\nM31\r\n");
|
||||
}
|
||||
}
|
||||
|
||||
void Marlin2::process_line() {
|
||||
if(MarlinOutput.size() < 3) {
|
||||
MarlinOutput="";
|
||||
|
||||
void Marlin2::process_line() {
|
||||
if (marlin_output_.size() < 3) {
|
||||
marlin_output_ = "";
|
||||
return;
|
||||
}
|
||||
|
||||
if(MarlinOutput.compare("ok") == 0 || MarlinOutput.compare(" ok") == 0) {
|
||||
listingFile = false;
|
||||
MarlinOutput="";
|
||||
|
||||
if (marlin_output_.compare("ok") == 0 || marlin_output_.compare(" ok") == 0) {
|
||||
listing_file_ = false;
|
||||
marlin_output_ = "";
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
ESP_LOGD(TAG, "DEBUG>#%s#",MarlinOutput.c_str());
|
||||
|
||||
if(!listingFile && MarlinOutput.compare("Begin file list") == 0) {
|
||||
|
||||
ESP_LOGD(TAG, "DEBUG>#%s#", marlin_output_.c_str());
|
||||
|
||||
if (!listing_file_ && marlin_output_.compare("Begin file list") == 0) {
|
||||
ESP_LOGD(TAG, "Listing of files started!");
|
||||
listingFile = true;
|
||||
//reset string for next line
|
||||
MarlinOutput="";
|
||||
listing_file_ = true;
|
||||
file_table_.clear();
|
||||
marlin_output_ = "";
|
||||
return;
|
||||
}
|
||||
|
||||
if(listingFile && MarlinOutput.compare("End file list") == 0) {
|
||||
|
||||
if (listing_file_ && marlin_output_.compare("End file list") == 0) {
|
||||
ESP_LOGD(TAG, "Listing of files stopped!");
|
||||
listingFile = false;
|
||||
//reset string for next line
|
||||
|
||||
#ifdef USE_TEXT_SENSOR
|
||||
std::string sd_files;
|
||||
|
||||
for (const auto& [key, value] : file_table_) {
|
||||
if (!sd_files.empty()) sd_files += "|";
|
||||
sd_files += key;
|
||||
}
|
||||
|
||||
if (find_text_sensor("sd_card_files") != nullptr){
|
||||
ESP_LOGD(TAG, "SD Files: %s", sd_files.c_str());
|
||||
find_text_sensor("sd_card_files")->publish_state(sd_files.c_str());
|
||||
listing_file_ = false;
|
||||
|
||||
#ifdef USE_BINARY_SENSOR
|
||||
if (find_binary_sensor("sd_card_present") != nullptr) {
|
||||
find_binary_sensor("sd_card_present")->publish_state(true);
|
||||
}
|
||||
#endif
|
||||
|
||||
MarlinOutput="";
|
||||
|
||||
publish_sd_files();
|
||||
|
||||
#ifdef USE_SENSOR
|
||||
if (find_sensor("sd_card_file_count") != nullptr) {
|
||||
find_sensor("sd_card_file_count")->publish_state(static_cast<float>(file_table_.size()));
|
||||
}
|
||||
#endif
|
||||
|
||||
marlin_output_ = "";
|
||||
return;
|
||||
}
|
||||
|
||||
if(listingFile && MarlinOutput.find(".GCO ") > 1) {
|
||||
int first_space = MarlinOutput.find(' ');
|
||||
int second_space = MarlinOutput.find(' ', first_space + 1);
|
||||
|
||||
if(first_space > 0) {
|
||||
std::string short_name = MarlinOutput.substr(0, first_space);
|
||||
|
||||
if (short_name.find("/") != std::string::npos){ // Omit subdirectories
|
||||
ESP_LOGD(TAG, "peskočeno kvůli vnořen %s",short_name.c_str());
|
||||
MarlinOutput="";
|
||||
|
||||
if (listing_file_ && marlin_output_.find(".GCO ") > 1) {
|
||||
size_t first_space = marlin_output_.find(' ');
|
||||
size_t second_space = marlin_output_.find(' ', first_space + 1);
|
||||
|
||||
if (first_space != std::string::npos) {
|
||||
std::string short_name = marlin_output_.substr(0, first_space);
|
||||
|
||||
if (short_name.find("/") != std::string::npos) {
|
||||
ESP_LOGD(TAG, "Skipping subdirectory: %s", short_name.c_str());
|
||||
marlin_output_ = "";
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
std::string long_name = short_name;
|
||||
|
||||
if (second_space > first_space){
|
||||
long_name = MarlinOutput.substr(second_space + 1);
|
||||
|
||||
if (second_space != std::string::npos && second_space > first_space) {
|
||||
long_name = marlin_output_.substr(second_space + 1);
|
||||
}
|
||||
|
||||
|
||||
file_table_[long_name] = short_name;
|
||||
}
|
||||
|
||||
//reset string for next line
|
||||
MarlinOutput="";
|
||||
|
||||
marlin_output_ = "";
|
||||
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
|
||||
|
||||
// Parse periodic temperature read out message
|
||||
if (
|
||||
marlin_output_.find(" T:") == 0 ||
|
||||
marlin_output_.find("T:") == 0 ||
|
||||
marlin_output_.find("ok T:") == 0 ||
|
||||
marlin_output_.find(" ok T:") == 0
|
||||
) {
|
||||
float ext_temperature, ext_set_temperature, bed_temperature, bed_set_temperature;
|
||||
if (process_temp_msg(&ext_temperature, &ext_set_temperature, &bed_temperature, &bed_set_temperature) != 0) {
|
||||
if (process_temp_msg(&ext_temperature, &ext_set_temperature, &bed_temperature, &bed_set_temperature) != 0) {
|
||||
#ifdef USE_SENSOR
|
||||
if (find_sensor("bed_temperature") != nullptr)
|
||||
find_sensor("bed_temperature")->publish_state(bed_temperature);
|
||||
|
||||
find_sensor("bed_temperature")->publish_state(bed_temperature);
|
||||
|
||||
if (find_sensor("bed_set_temperature") != nullptr)
|
||||
find_sensor("bed_set_temperature")->publish_state(bed_set_temperature);
|
||||
|
||||
find_sensor("bed_set_temperature")->publish_state(bed_set_temperature);
|
||||
|
||||
if (find_sensor("ext_temperature") != nullptr)
|
||||
find_sensor("ext_temperature")->publish_state(ext_temperature);
|
||||
|
||||
find_sensor("ext_temperature")->publish_state(ext_temperature);
|
||||
|
||||
if (find_sensor("ext_set_temperature") != nullptr)
|
||||
find_sensor("ext_set_temperature")->publish_state(ext_set_temperature);
|
||||
find_sensor("ext_set_temperature")->publish_state(ext_set_temperature);
|
||||
#endif
|
||||
#ifdef USE_TEXT_SENSOR
|
||||
if(bed_set_temperature==0.0 && ext_set_temperature==0.0) {
|
||||
if(ext_temperature < 32.0 && bed_temperature < 32.0){ //TODO define constants for these
|
||||
if (bed_set_temperature == 0.0 && ext_set_temperature == 0.0) {
|
||||
if (ext_temperature < 32.0 && bed_temperature < 32.0) {
|
||||
set_printer_state("IDLE");
|
||||
}
|
||||
else if(ext_temperature < 150.0 && bed_temperature < 55.0){
|
||||
} else if (ext_temperature < 150.0 && bed_temperature < 55.0) {
|
||||
set_printer_state("COOLING");
|
||||
}
|
||||
}
|
||||
if(print_progress == 0.0 && (bed_set_temperature!=0.0 || ext_set_temperature!=0.0)) {
|
||||
//print_time_offset = print_time save print time ofset to deduct from total value send to hass
|
||||
if (print_progress_ == 0.0 && (bed_set_temperature != 0.0 || ext_set_temperature != 0.0)) {
|
||||
set_printer_state("PREHEATING");
|
||||
}
|
||||
#endif
|
||||
|
||||
//ESP_LOGD(TAG, "Bed Temperature=%.1f°C Ext Temperature=%.1f°C ", bed_temperature, ext_temperature);
|
||||
}
|
||||
|
||||
//reset string for next line
|
||||
MarlinOutput="";
|
||||
|
||||
marlin_output_ = "";
|
||||
return;
|
||||
}
|
||||
|
||||
//Parse Progress of the print
|
||||
if(MarlinOutput.find("SD printing byte") == 0 ) {
|
||||
print_progress = process_progress_msg();
|
||||
|
||||
// Parse progress of the print
|
||||
if (marlin_output_.find("SD printing byte") == 0) {
|
||||
print_progress_ = process_progress_msg();
|
||||
#ifdef USE_SENSOR
|
||||
if (find_sensor("print_progress") != nullptr)
|
||||
find_sensor("print_progress")->publish_state(print_progress);
|
||||
|
||||
//ESP_LOGD(TAG, "progress=%.1f", print_progress);
|
||||
find_sensor("print_progress")->publish_state(print_progress_);
|
||||
#endif
|
||||
|
||||
|
||||
set_printer_state("PRINTING");
|
||||
//reset string for next line
|
||||
MarlinOutput="";
|
||||
marlin_output_ = "";
|
||||
return;
|
||||
}
|
||||
|
||||
//Parse Printitme
|
||||
if(MarlinOutput.find("echo:Print time: ") == 0) {
|
||||
double current=0;
|
||||
double remaining=0;
|
||||
if (process_print_time_msg(¤t, &remaining, print_progress) != 0) {
|
||||
#ifdef USE_SENSOR
|
||||
|
||||
// Parse print time
|
||||
if (marlin_output_.find("echo:Print time: ") == 0) {
|
||||
double current = 0;
|
||||
double remaining = 0;
|
||||
if (process_print_time_msg(¤t, &remaining, print_progress_) != 0) {
|
||||
#ifdef USE_SENSOR
|
||||
if (find_sensor("print_time") != nullptr)
|
||||
find_sensor("print_time")->publish_state(current);
|
||||
|
||||
find_sensor("print_time")->publish_state(current);
|
||||
|
||||
if (find_sensor("print_time_remaining") != nullptr)
|
||||
find_sensor("print_time_remaining")->publish_state(remaining);
|
||||
find_sensor("print_time_remaining")->publish_state(remaining);
|
||||
#endif
|
||||
|
||||
//ESP_LOGD(TAG, "time=%f remaining=%f", current, remaining);
|
||||
}
|
||||
|
||||
//reset string for next line
|
||||
MarlinOutput="";
|
||||
|
||||
marlin_output_ = "";
|
||||
return;
|
||||
}
|
||||
|
||||
//File opened: salma_~2.gco Size: 12279971
|
||||
if(MarlinOutput.find("File opened: ") == 0) {
|
||||
size_t first_space = MarlinOutput.find("File opened: ");
|
||||
size_t second_space = MarlinOutput.find(" Size: ");
|
||||
|
||||
if (first_space != std::string::npos && second_space != std::string::npos) {
|
||||
size_t start = first_space + std::strlen("File opened: ");
|
||||
size_t len = second_space - start;
|
||||
ESP_LOGD(TAG, "position");
|
||||
std::string filename = from_dos_name(MarlinOutput.substr(start, len));
|
||||
ESP_LOGD("Soubor: %s\n", filename.c_str());
|
||||
|
||||
|
||||
// File opened: SALMA_~2.GCO Size: 12279971
|
||||
if (marlin_output_.find("File opened: ") == 0) {
|
||||
size_t start_pos = std::strlen("File opened: ");
|
||||
size_t size_pos = marlin_output_.find(" Size: ");
|
||||
|
||||
if (size_pos != std::string::npos) {
|
||||
std::string filename = from_dos_name(marlin_output_.substr(start_pos, size_pos - start_pos));
|
||||
ESP_LOGD(TAG, "Soubor: %s", filename.c_str());
|
||||
|
||||
#ifdef USE_TEXT_SENSOR
|
||||
if (find_text_sensor("sd_card_file_selected") != nullptr){
|
||||
if (find_text_sensor("sd_card_file_selected") != nullptr) {
|
||||
find_text_sensor("sd_card_file_selected")->publish_state(filename.c_str());
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
//reset string for next line
|
||||
MarlinOutput="";
|
||||
|
||||
marlin_output_ = "";
|
||||
return;
|
||||
}
|
||||
|
||||
//Print From SD Card Started
|
||||
if(MarlinOutput.compare("File selected") == 0) {
|
||||
|
||||
// Print from SD card started
|
||||
if (marlin_output_.compare("File selected") == 0) {
|
||||
set_printer_state("PRINTING");
|
||||
|
||||
//reset string for next line
|
||||
MarlinOutput="";
|
||||
marlin_output_ = "";
|
||||
return;
|
||||
}
|
||||
|
||||
//Print Finished
|
||||
if(MarlinOutput.compare("Done printing") == 0) {
|
||||
print_progress = 100;
|
||||
#ifdef USE_SENSOR
|
||||
|
||||
// Print finished
|
||||
if (marlin_output_.compare("Done printing") == 0) {
|
||||
print_progress_ = 100;
|
||||
#ifdef USE_SENSOR
|
||||
if (find_sensor("print_progress") != nullptr)
|
||||
find_sensor("print_progress")->publish_state(print_progress);
|
||||
|
||||
find_sensor("print_progress")->publish_state(print_progress_);
|
||||
|
||||
if (find_sensor("print_time_remaining") != nullptr)
|
||||
find_sensor("print_time_remaining")->publish_state(0);
|
||||
find_sensor("print_time_remaining")->publish_state(0);
|
||||
#endif
|
||||
#ifdef USE_TEXT_SENSOR
|
||||
#ifdef USE_TEXT_SENSOR
|
||||
set_printer_state("FINISHED");
|
||||
#endif
|
||||
|
||||
//reset string for next line
|
||||
MarlinOutput="";
|
||||
#endif
|
||||
|
||||
marlin_output_ = "";
|
||||
return;
|
||||
}
|
||||
|
||||
// //Print Paused
|
||||
// if(MarlinOutput.compare("Printer halted") == 0) {
|
||||
// set_printer_state("PAUSED");
|
||||
|
||||
// //reset string for next line
|
||||
// MarlinOutput="";
|
||||
// return;
|
||||
// }
|
||||
|
||||
// //Print Stoped
|
||||
if(MarlinOutput.compare("Print Aborted") == 0) {
|
||||
|
||||
// Print aborted
|
||||
if (marlin_output_.compare("Print Aborted") == 0) {
|
||||
set_printer_state("STOPPED");
|
||||
|
||||
//reset string for next line
|
||||
MarlinOutput="";
|
||||
marlin_output_ = "";
|
||||
return;
|
||||
}
|
||||
|
||||
ESP_LOGD(TAG, ">#%s#",MarlinOutput.c_str());
|
||||
MarlinOutput="";
|
||||
return;
|
||||
}
|
||||
|
||||
ESP_LOGD(TAG, ">#%s#", marlin_output_.c_str());
|
||||
marlin_output_ = "";
|
||||
}
|
||||
|
||||
int Marlin2::process_temp_msg(float* ext_temperature, float* ext_set_temperature, float* bed_temperature, float* bed_set_temperature) {
|
||||
|
||||
void Marlin2::publish_sd_files() {
|
||||
#if defined(USE_TEXT_SENSOR) || defined(USE_SELECT)
|
||||
std::string chunk;
|
||||
uint8_t count = 0;
|
||||
|
||||
#ifdef USE_SELECT
|
||||
std::vector<std::string> file_names;
|
||||
#endif
|
||||
|
||||
for (const auto &[key, value] : file_table_) {
|
||||
if (count >= max_sd_files_) {
|
||||
ESP_LOGW(TAG, "SD file list truncated at %u files (max_sd_files=%u, total=%u)",
|
||||
max_sd_files_, max_sd_files_, (unsigned) file_table_.size());
|
||||
break;
|
||||
}
|
||||
|
||||
#ifdef USE_SELECT
|
||||
file_names.push_back(key);
|
||||
#endif
|
||||
|
||||
if (!chunk.empty()) chunk += "|";
|
||||
chunk += key;
|
||||
count++;
|
||||
}
|
||||
|
||||
#ifdef USE_TEXT_SENSOR
|
||||
if (find_text_sensor("sd_card_files") != nullptr) {
|
||||
find_text_sensor("sd_card_files")->publish_state(chunk);
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef USE_SELECT
|
||||
if (find_select("sd_card_file_select") != nullptr) {
|
||||
find_select("sd_card_file_select")->traits.set_options(file_names);
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
||||
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;
|
||||
|
||||
|
||||
while (marlin_output_.find(" ") != std::string::npos)
|
||||
marlin_output_.erase(marlin_output_.find(' '), 1);
|
||||
|
||||
while (marlin_output_.find("ok") != std::string::npos)
|
||||
marlin_output_.erase(marlin_output_.find("ok"), 2);
|
||||
|
||||
if (sscanf(marlin_output_.c_str(), "T:%f/%fB:%f/%f", ext_temperature, ext_set_temperature, bed_temperature, bed_set_temperature) == 4)
|
||||
return 1;
|
||||
|
||||
if (sscanf(marlin_output_.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(marlin_output_.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(marlin_output_.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 round(((float) current * 100.0) / (float) total);
|
||||
|
||||
float Marlin2::process_progress_msg() {
|
||||
size_t slash_pos = marlin_output_.find('/');
|
||||
if (slash_pos == std::string::npos || slash_pos + 1 >= marlin_output_.size())
|
||||
return 0.0f;
|
||||
|
||||
float current = std::stof(marlin_output_.substr(17));
|
||||
float total = std::stof(marlin_output_.substr(slash_pos + 1));
|
||||
|
||||
if (total < 1.0f)
|
||||
return 0.0f;
|
||||
|
||||
return roundf((current * 100.0f) / total);
|
||||
}
|
||||
|
||||
int Marlin2::process_print_time_msg(double* current, double* remaining, float progress){
|
||||
MarlinTime = MarlinOutput.substr(16);
|
||||
float d = 0, h = 0, m = 0, s = 0;
|
||||
|
||||
//ESP_LOGD(TAG,MarlinTime.c_str());
|
||||
|
||||
if (sscanf(MarlinTime.c_str() ,"%fd %fh %fm %fs", &d, &h, &m, &s)!=4) {
|
||||
d=0;
|
||||
if (sscanf(MarlinTime.c_str() ,"%fh %fm %fs", &h, &m, &s)!=3) {
|
||||
d=0; h=0;
|
||||
if (sscanf(MarlinTime.c_str() ,"%fm %fs", &m, &s)!=2) {
|
||||
d=0; h=0; m=0;
|
||||
if (sscanf(MarlinTime.c_str() ,"%fs", &s)!=1) {
|
||||
|
||||
int Marlin2::process_print_time_msg(double *current, double *remaining, float progress) {
|
||||
marlin_time_ = marlin_output_.substr(16);
|
||||
float d = 0, h = 0, m = 0, s = 0;
|
||||
|
||||
if (sscanf(marlin_time_.c_str(), "%fd %fh %fm %fs", &d, &h, &m, &s) != 4) {
|
||||
d = 0;
|
||||
if (sscanf(marlin_time_.c_str(), "%fh %fm %fs", &h, &m, &s) != 3) {
|
||||
d = 0; h = 0;
|
||||
if (sscanf(marlin_time_.c_str(), "%fm %fs", &m, &s) != 2) {
|
||||
d = 0; h = 0; m = 0;
|
||||
if (sscanf(marlin_time_.c_str(), "%fs", &s) != 1) {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
*current = round(((d)*24*60*60) + ((h)*60*60) + ((m)*60) + (s));
|
||||
|
||||
if(progress != 0.0 && progress != 100.0) {
|
||||
|
||||
*current = round(((d) * 24 * 60 * 60) + ((h) * 60 * 60) + ((m) * 60) + (s));
|
||||
|
||||
if (progress != 0.0 && progress != 100.0) {
|
||||
*remaining = (((100 * *current) / round(progress)) - *current);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
void Marlin2::set_printer_state(std::string status){
|
||||
#ifdef USE_TEXT_SENSOR
|
||||
// if (!PrinterState.compare(status))
|
||||
// return;
|
||||
|
||||
if (find_text_sensor("printer_state") != nullptr){
|
||||
|
||||
void Marlin2::set_printer_state(std::string status) {
|
||||
#ifdef USE_TEXT_SENSOR
|
||||
if (find_text_sensor("printer_state") != nullptr) {
|
||||
find_text_sensor("printer_state")->publish_state(status);
|
||||
}
|
||||
|
||||
// ESP_LOGD(TAG, "Printer Status %s", status.c_str());
|
||||
// PrinterState = status;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
std::string Marlin2::to_dos_name(std::string filename) {
|
||||
auto it = file_table_.find(filename);
|
||||
if (it != file_table_.end()) {
|
||||
return file_table_[filename];
|
||||
return it->second;
|
||||
}
|
||||
|
||||
return filename;
|
||||
}
|
||||
|
||||
std::string Marlin2::from_dos_name(std::string dos_filename ) {
|
||||
for (const auto& [key, value] : file_table_) {
|
||||
std::string Marlin2::from_dos_name(std::string dos_filename) {
|
||||
for (const auto &[key, value] : file_table_) {
|
||||
if (value == dos_filename) {
|
||||
return key;
|
||||
}
|
||||
}
|
||||
|
||||
return dos_filename;
|
||||
}
|
||||
|
||||
std::string to_lower(std::string s) {
|
||||
return s;
|
||||
// String arduinoStr(s.c_str()); // převod na Arduino String
|
||||
// arduinoStr.toLowerCase(); // změní obsah přímo
|
||||
// return std::string(arduinoStr.c_str()); // zpět na std::string
|
||||
}
|
||||
|
||||
} // namespace esphome
|
||||
} // namespace esphome::marlin2
|
||||
|
||||
Reference in New Issue
Block a user