1
0
mirror of https://github.com/esphome/esphome.git synced 2025-03-15 07:08:20 +00:00

Update mcp4461.cpp

This commit is contained in:
Oliver Kleinecke 2025-02-20 17:31:56 +01:00 committed by GitHub
parent 8d1ed1184b
commit 4a33b62ef2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,23 +46,23 @@ void Mcp4461Component::begin_() {
// Converts a status to a human readable string // Converts a status to a human readable string
static const LogString *mcp4461_get_message_string(int status) { static const LogString *mcp4461_get_message_string(int status) {
switch (status) { switch (status) {
case Mcp4461Component::MCP4461_STATUS_I2C_ERROR: case this->MCP4461_STATUS_I2C_ERROR:
return LOG_STR("I2C error - communication with MCP4461 failed!"); return LOG_STR("I2C error - communication with MCP4461 failed!");
case Mcp4461Component::MCP4461_STATUS_REGISTER_ERROR: case this->MCP4461_STATUS_REGISTER_ERROR:
return LOG_STR("Status register could not be read"); return LOG_STR("Status register could not be read");
case Mcp4461Component::MCP4461_STATUS_REGISTER_INVALID: case this->MCP4461_STATUS_REGISTER_INVALID:
return LOG_STR("Invalid status register value - bits 1,7 or 8 are 0"); return LOG_STR("Invalid status register value - bits 1,7 or 8 are 0");
case Mcp4461Component::MCP4461_VALUE_INVALID: case this->MCP4461_VALUE_INVALID:
return LOG_STR("Invalid value for wiper given"); return LOG_STR("Invalid value for wiper given");
case Mcp4461Component::MCP4461_WRITE_PROTECTED: case this->MCP4461_WRITE_PROTECTED:
return LOG_STR("MCP4461 is write protected. Setting nonvolatile wipers/eeprom values is prohibited."); return LOG_STR("MCP4461 is write protected. Setting nonvolatile wipers/eeprom values is prohibited.");
case Mcp4461Component::MCP4461_WIPER_ENABLED: case this->MCP4461_WIPER_ENABLED:
return LOG_STR("MCP4461 Wiper is already enabled, ignoring cmd to enable."); return LOG_STR("MCP4461 Wiper is already enabled, ignoring cmd to enable.");
case Mcp4461Component::MCP4461_WIPER_DISABLED: case this->MCP4461_WIPER_DISABLED:
return LOG_STR("MCP4461 Wiper is disabled. All actions on this wiper are prohibited."); return LOG_STR("MCP4461 Wiper is disabled. All actions on this wiper are prohibited.");
case Mcp4461Component::MCP4461_WIPER_LOCKED: case this->MCP4461_WIPER_LOCKED:
return LOG_STR("MCP4461 Wiper is locked using WiperLock-technology. All actions on this wiper are prohibited."); return LOG_STR("MCP4461 Wiper is locked using WiperLock-technology. All actions on this wiper are prohibited.");
case Mcp4461Component::MCP4461_STATUS_OK: case this->MCP4461_STATUS_OK:
return LOG_STR("Status OK"); return LOG_STR("Status OK");
default: default:
return LOG_STR("Unknown"); return LOG_STR("Unknown");