diff --git a/components/empty_i2c_component/empty_i2c_component.cpp b/components/empty_i2c_component/empty_i2c_component.cpp index 48bd6be..089b5db 100644 --- a/components/empty_i2c_component/empty_i2c_component.cpp +++ b/components/empty_i2c_component/empty_i2c_component.cpp @@ -11,7 +11,7 @@ void EmptyI2CComponent::setup() { } void EmptyI2CComponent::loop() { - uint8_t data = 10; + uint8_t data = 9; this->read_register(0x0, &data, 0x1); ESP_LOGI(TAG, "READ value: %d", data); }