Update esphome/components/gp8211/gp8211.cpp

Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
This commit is contained in:
haudamekki 2024-10-31 08:08:25 +01:00 committed by GitHub
parent fa5a027946
commit d074bc2819
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,8 +9,7 @@ static const char *const TAG = "gp8211";
static const uint8_t RANGE_REGISTER = 0x01;
void GP8211::setup() {
uint8_t voltage_setting = (this->voltage_ == GP8211_VOLTAGE_10V) ? 0x77 : 0x55;
this->write_register(RANGE_REGISTER, &voltage_setting, 1);
this->write_register(RANGE_REGISTER, &this->voltage_, 1);
}
void GP8211::dump_config() {