Merge pull request #13129 from cbcercas/AHT2x

support AHT20 without enabling AHT1x
This commit is contained in:
Theo Arends 2021-09-20 15:21:45 +02:00 committed by GitHub
commit e31fbcf283
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -19,7 +19,7 @@
*/ */
#ifdef USE_I2C #ifdef USE_I2C
#ifdef USE_AHT1x #if defined(USE_AHT1x) || defined(USE_AHT2x)
/*********************************************************************************************\ /*********************************************************************************************\
* AHT10/15/20 - Temperature and Humidity * AHT10/15/20 - Temperature and Humidity
@ -38,6 +38,7 @@
* *
* 27.08.2020 support for AHT20 added. Now, the AHT20 should support standard I2C Protokoll * 27.08.2020 support for AHT20 added. Now, the AHT20 should support standard I2C Protokoll
* and allows other I2C Devices on the bus but have only one I2C Address (0x38) * and allows other I2C Devices on the bus but have only one I2C Address (0x38)
* 14.09.2021 support AHT20 without enabling AHT1x
* *
* AHT20 I2C Address: 0x38 * AHT20 I2C Address: 0x38
\*********************************************************************************************/ \*********************************************************************************************/