Fix backwards string case helpers (#3126)

This commit is contained in:
Jesse Hills
2022-01-31 10:58:27 +13:00
committed by GitHub
parent e3fd68c849
commit 4a5970b4af
2 changed files with 3 additions and 3 deletions
@@ -235,7 +235,7 @@ float DallasTemperatureSensor::get_temp_c() {
return temp / 128.0f;
}
std::string DallasTemperatureSensor::unique_id() { return "dallas-" + str_upper_case(format_hex(this->address_)); }
std::string DallasTemperatureSensor::unique_id() { return "dallas-" + str_lower_case(format_hex(this->address_)); }
} // namespace dallas
} // namespace esphome