/* This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ /** library to query measurements from Aosong DHT22 (aka. AM2302) temperature and relative humidity sensor (API) * @file sensor_dht22.h * @author King Kévin * @date 2017 * @note peripherals used: timer channel @ref sensor_dht22_timer (add external pull-up resistor) */ #pragma once /** a measurement response has been received */ extern volatile bool sensor_dht22_measurement_received; /** measurement returned by sensor */ struct sensor_dht22_measurement_t { float humidity; /**< relative humidity in %RH (0-100) */ float temperature; /**< temperature in °C (-40-80) */ }; /** setup peripherals to communicate with sensor */ void sensor_dht22_setup(void); /** request measurement from sensor * @return request started successfully */ bool sensor_dht22_measurement_request(void); /** decode received measurement * @return decoded measurement (0xff,0xff if invalid) */ struct sensor_dht22_measurement_t sensor_dht22_measurement_decode(void);