Update gp8211.cpp

This commit is contained in:
haudamekki 2024-10-31 09:01:55 +01:00 committed by GitHub
parent 6ede5c75cd
commit cdf55d7c70
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,7 +8,9 @@ static const char *const TAG = "gp8211";
static const uint8_t RANGE_REGISTER = 0x01; static const uint8_t RANGE_REGISTER = 0x01;
void GP8211::setup() { this->write_register(RANGE_REGISTER, &this->voltage_, 1); } void GP8211::setup() {
this->write_register(RANGE_REGISTER, reinterpret_cast<uint8_t*>(&this->voltage_), sizeof(this->voltage_));
}
void GP8211::dump_config() { void GP8211::dump_config() {
ESP_LOGCONFIG(TAG, "GP8211:"); ESP_LOGCONFIG(TAG, "GP8211:");