-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Copyright 2024 The Periph Authors. All rights reserved. | ||
// Use of this source code is governed under the Apache License, Version 2.0 | ||
// that can be found in the LICENSE file. | ||
|
||
// Package aht20 controls an AHT20 device over I²C. | ||
// | ||
// # More details | ||
// | ||
// The sensor is a temperature and humidity sensor with a typical accuracy of ±2% RH and ±0.3°C. | ||
// The aht20.Dev type implements the physic.SenseEnv interface. The physic.Env measurement results | ||
// contain a temperature, pressure and humidity value though the pressure is not set. | ||
// The only device address is 0x38. | ||
// | ||
// # Datasheet | ||
// | ||
// http://www.aosong.com/userfiles/files/media/Data%20Sheet%20AHT20.pdf | ||
package aht20 |