Skip to content

Instantly share code, notes, and snippets.

@deadlyjigsaw
deadlyjigsaw / gist:a570b67f8b9fd1ebab78b19efedf610c
Created April 21, 2025 10:59
aht20+bmp280 is not working without wire.h on esp32s3
#include <Wire.h>
#include <Adafruit_AHTX0.h>
#include <Adafruit_BMP280.h>
#define SDA_PIN 4
#define SCL_PIN 5
Adafruit_AHTX0 aht;
Adafruit_BMP280 bmp;