From 6c07834921805a2c4abd24cecd81a374340fe9ae Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Sat, 4 Oct 2025 03:16:26 -0400 Subject: [PATCH] esp32 temperature node --- ESP32-IDF_Temperture-Node-v2/main/hello_world_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ESP32-IDF_Temperture-Node-v2/main/hello_world_main.c b/ESP32-IDF_Temperture-Node-v2/main/hello_world_main.c index 77d6cb02b..09198ea5a 100644 --- a/ESP32-IDF_Temperture-Node-v2/main/hello_world_main.c +++ b/ESP32-IDF_Temperture-Node-v2/main/hello_world_main.c @@ -38,9 +38,9 @@ static bme280_handle_t bme280 = NULL; i2c_config_t conf = { .mode = I2C_MODE_MASTER, - .sda_io_num = 22, + .sda_io_num = 21, .sda_pullup_en = GPIO_PULLUP_ENABLE, - .scl_io_num = 21, + .scl_io_num = 22, .sda_pullup_en = GPIO_PULLUP_ENABLE, .master.clk_speed = 400000, .clk_flags= 0,