1
0
mirror of https://github.com/esphome/esphome.git synced 2025-03-15 15:18:16 +00:00

Yet again

This commit is contained in:
Jordan Zucker 2025-02-13 15:04:14 -08:00
parent 767447d47f
commit 14054dc3f6
2 changed files with 2 additions and 2 deletions

View File

@ -842,7 +842,7 @@ void PrometheusHandler::climate_type_(AsyncResponseStream *stream) {
void PrometheusHandler::climate_setting_row_(AsyncResponseStream *stream, climate::Climate *obj, std::string &area,
std::string &node, std::string &friendly_name, std::string &setting,
const LogString &setting_value) {
const LogString *setting_value) {
stream->print(F("esphome_climate_setting{id=\""));
stream->print(relabel_id_(obj).c_str());
add_area_label_(stream, area);

View File

@ -179,7 +179,7 @@ class PrometheusHandler : public AsyncWebHandler, public Component {
void climate_row_(AsyncResponseStream *stream, climate::Climate *obj, std::string &area, std::string &node,
std::string &friendly_name);
void climate_setting_row_(AsyncResponseStream *stream, climate::Climate *obj, std::string &area, std::string &node,
std::string &friendly_name, std::string &setting, const LogString &setting_value);
std::string &friendly_name, std::string &setting, const LogString *setting_value);
void climate_value_row_(AsyncResponseStream *stream, climate::Climate *obj, std::string &area, std::string &node,
std::string &friendly_name, std::string &category, std::string &climate_value);
#endif