mirror of
https://github.com/esphome/esphome.git
synced 2025-02-07 05:30:54 +00:00
parent
4da57c35d0
commit
567256bd62
@ -162,7 +162,7 @@ void RotaryEncoderSensor::dump_config() {
|
|||||||
LOG_PIN(" Pin B: ", this->pin_b_);
|
LOG_PIN(" Pin B: ", this->pin_b_);
|
||||||
LOG_PIN(" Pin I: ", this->pin_i_);
|
LOG_PIN(" Pin I: ", this->pin_i_);
|
||||||
|
|
||||||
const LogString *restore_mode = LOG_STR("");
|
const LogString *restore_mode;
|
||||||
switch (this->restore_mode_) {
|
switch (this->restore_mode_) {
|
||||||
case ROTARY_ENCODER_RESTORE_DEFAULT_ZERO:
|
case ROTARY_ENCODER_RESTORE_DEFAULT_ZERO:
|
||||||
restore_mode = LOG_STR("Restore (Defaults to zero)");
|
restore_mode = LOG_STR("Restore (Defaults to zero)");
|
||||||
@ -170,6 +170,8 @@ void RotaryEncoderSensor::dump_config() {
|
|||||||
case ROTARY_ENCODER_ALWAYS_ZERO:
|
case ROTARY_ENCODER_ALWAYS_ZERO:
|
||||||
restore_mode = LOG_STR("Always zero");
|
restore_mode = LOG_STR("Always zero");
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
restore_mode = LOG_STR("");
|
||||||
}
|
}
|
||||||
ESP_LOGCONFIG(TAG, " Restore Mode: %s", LOG_STR_ARG(restore_mode));
|
ESP_LOGCONFIG(TAG, " Restore Mode: %s", LOG_STR_ARG(restore_mode));
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user