From db1dc6c137aead2f487549fe0209a62593102ed3 Mon Sep 17 00:00:00 2001 From: SoulKa Date: Wed, 17 Jan 2024 07:53:28 +0100 Subject: [PATCH] update AHT20 doc --- aht20/doc.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/aht20/doc.go b/aht20/doc.go index 0c12a71..bfa8e37 100644 --- a/aht20/doc.go +++ b/aht20/doc.go @@ -3,9 +3,15 @@ // 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 // -// **Datasheet:** http://www.aosong.com/userfiles/files/media/Data%20Sheet%20AHT20.pdf +// http://www.aosong.com/userfiles/files/media/Data%20Sheet%20AHT20.pdf package aht20