mirror of https://github.com/periph/devices
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
548 B
Go
15 lines
548 B
Go
// Copyright 2016 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 dht22 is a driver for dht22/am2302 temperature and humidity sensor
|
|
//
|
|
//to start use function: "New"
|
|
//
|
|
//to read data from use function: "Read"
|
|
//or u can read data continiusly from chanale whate create by function: "SenseContinuous"
|
|
//
|
|
//datasheet:
|
|
//https://cdn-shop.adafruit.com/datasheets/Digital+humidity+and+temperature+sensor+AM2302.pdf
|
|
|
|
package dht22 |