mirror of
https://github.com/esphome/esphome.git
synced 2024-12-26 15:34:53 +01:00
Update config.h
This commit is contained in:
parent
1689e90e64
commit
30168c6164
1 changed files with 3 additions and 3 deletions
|
@ -219,14 +219,14 @@ struct RegisterConfig {
|
|||
uint8_t starting_address = 0;
|
||||
uint8_t length = 0;
|
||||
uint8_t addh = 0;
|
||||
std::string addh_description_() { return "addh:" + this->addh; }
|
||||
std::string addh_description_() { return "addh:" + to_string(this->addh); }
|
||||
uint8_t addl = 0;
|
||||
std::string addl_description_() { return "addl:" + this->addh; }
|
||||
std::string addl_description_() { return "addl:" + to_string(this->addh); }
|
||||
struct REG0 reg_0;
|
||||
struct REG1 reg_1;
|
||||
// reg2
|
||||
uint8_t channel;
|
||||
std::string channel_description_() { return "channel:" + this->channel; }
|
||||
std::string channel_description_() { return "channel: " + to_string(this->channel); }
|
||||
struct REG3 reg_3;
|
||||
uint8_t crypt_h;
|
||||
uint8_t crypt_l;
|
||||
|
|
Loading…
Reference in a new issue