This commit is contained in:
2023-12-20 15:58:03 +01:00
parent 3a7276ce1c
commit ef51d5b253
@@ -14,8 +14,8 @@ void EmptyI2CSensor::setup(){
}
void EmptyI2CSensor::update(){
uint8_t* data = 10;
this->read_register(0x0, data, (size_t)0x1);
uint8_t data = 10;
this->read_register(0x0, &data, (size_t)0x1);
ESP_LOGI(TAG, "sensor output: %d", data[0]);
}