1
0
mirror of https://github.com/esphome/esphome.git synced 2025-04-03 17:30:28 +01:00

Update mcp4461.cpp

This commit is contained in:
Oliver Kleinecke 2025-02-04 00:10:44 +01:00 committed by GitHub
parent ffc4cc2e58
commit a50c26a8d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -155,7 +155,7 @@ void Mcp4461Component::update_wiper_level(Mcp4461WiperIdx wiper) {
void Mcp4461Component::set_wiper_level(Mcp4461WiperIdx wiper, uint16_t value) {
uint8_t wiper_idx = static_cast<uint8_t>(wiper);
if (data > 0x100) {
if (value > 0x100) {
ESP_LOGW(TAG, "ignoring invalid wiper level %" PRIu16 "!");
return;
}
@ -343,7 +343,7 @@ void Mcp4461Component::disable_terminal(Mcp4461WiperIdx wiper, char terminal) {
this->update_ = true;
}
uint16_t Mcp4461Component::get_eeprom_value(Mcp4461EeepromLocation location) {
uint16_t Mcp4461Component::get_eeprom_value(Mcp4461EepromLocation location) {
uint8_t reg = 0;
reg |= static_cast<uint8_t>(MCP4461_EEPROM_1 + (static_cast<uint8_t>(location) * 0x10));
reg |= static_cast<uint8_t>(Mcp4461Commands::READ);
@ -356,7 +356,7 @@ uint16_t Mcp4461Component::get_eeprom_value(Mcp4461EeepromLocation location) {
return buf;
}
void Mcp4461Component::set_eeprom_value(Mcp4461EeepromLocation location, uint16_t value) {
void Mcp4461Component::set_eeprom_value(Mcp4461EepromLocation location, uint16_t value) {
uint8_t addr = 0;
if (value > 511) {
return;