Next, I wired up AHT10 sensor module and Arduino Uno as shown in the below hardware setup diagram. I also uploaded a simple test code to display sensor readings on the Serial Monitor window. I got some sensible sensor values (temperature, humidity and dew point). Although I didn’t expect...
How to Program AHT10 module with Arduino IDE? Programming is very simple, to display the sensor readings on the Arduino IDE serial monitor, you just have to import theAHT10library and load the following test code to measure temperature and humidity: #include < Wire .h> // Library to estab...
Arduino 数据 原创 阿基米东Archimedong 2022-08-08 23:07:02 459阅读 3.11 haas506开发教程-example-温湿度传感器(AHT10) haas506开发教程-example-温湿度传感器(AHT10)1.AHT10简介2.测试代码3.测试 嵌入式硬件 物联网 haas506 python 测量范围 原创 ...
Aarduinos library file:https://github.com/Thinary/AHT10 Specifications and code links:https://pan.baidu.com/s/1fqoUHHdF3yRc56LOpkKlDgextraction code: PGSF The AHT10, a new generation of temperature and humidity sensors, sets a new standard in terms of size and intelligence: it is embedd...
Aarduinos library file:https://github.com/Thinary/AHT10 Specifications and code links:https://pan.baidu.com/s/1fqoUHHdF3yRc56LOpkKlDgextraction code: PGSF The AHT10, a new generation of temperature and humidity sensors, sets a new standard in terms of size and intelligence: it is embedd...
Friendly** The AHT10 module is not only versatile but also user-friendly. It supports I2C communication, which makes it compatible with a variety of microcontrollers and development boards. Whether you're working with an Arduino, Raspberry Pi, or any other compatible device, the AHT10 module ...
arduinoarduino-librarytemperature-sensori2c-sensorshumidity-sensoraosongasairaht10aht15aht20aht21aht25 UpdatedMar 9, 2025 C++ enjoyneering/AHT10 Star44 Code Issues Pull requests This is an Arduino library for Aosong ASAIR AHT10, AHT15 Digital Humidity & Temperature Sensor ...
This is an Arduino library for Aosong ASAIR AHT10, AHT15 & AHT20 Digital Humidity & Temperature Sensor Supply voltage: 1.8v - 3.6v for AHT10, AHT15 & 2.0v - 5.5v for AHT20 Temperature range: -40°C..+85°C Temperature resolution: 0.01°C Temperature accuracy: ±0.3°C Relative humid...
This is the Adafruit AHT10+AHT20 Humidity and Temperature Sensor library for Arduino Tested and works great with the Adafruit AHT20 Breakout Board This chip uses I2C to communicate, 2 pins are required to interface Adafruit invests time and resources providing this open source code, please suppo...
I did a little more research in the code and it could be data type related, It's framework bug espressif/arduino-esp32#6616 SDA and SCL are defined as static const uint8_t SDA = 21; static const uint8_t SCL = 22; and Wire.begin() can be: bool begin(int sda=-1, int scl=-...