/* * Copyright 2015 Ludwig Knüpfer, * 2015 Christian Mehlis * 2016-2017 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @defgroup drivers_dht DHT Family of Humidity and Temperature Sensors * @ingroup drivers_sensors * @ingroup drivers_saul * @brief Device driver for the DHT Family of humidity * and temperature sensors * * This driver provides @ref drivers_saul capabilities. * * @{ * * @file * @brief Device driver interface for the DHT family of humidity * and temperature sensors * * @author Ludwig Knüpfer * @author Hauke Petersen */ #ifndef DHT_H #define DHT_H #include #include "periph/gpio.h" #ifdef __cplusplus extern "C" { #endif /** * @brief Possible return codes */ enum { DHT_OK = 0, /**< all good */ DHT_NOCSUM = -1, /**< checksum error */ DHT_TIMEOUT = -2, /**< communication timed out */ }; /** * @brief Data type for storing DHT sensor readings */ typedef struct { uint16_t humidity; /**< relative percent */ uint16_t temperature; /**< temperature in deci-Celsius */ } dht_data_t; /** * @brief Configuration parameters for DHT devices */ typedef struct { gpio_t pin; /**< GPIO pin of the device's data pin */ gpio_mode_t in_mode; /**< input pin configuration, with or without pull * resistor */ } dht_params_t; /** * @brief Device descriptor for DHT sensor devices */ typedef struct { dht_params_t params; /**< Device parameters */ dht_data_t last_val; /**< Values of the last measurement */ uint32_t last_read_us; /**< Time of the last measurement */ } dht_t; /** * @brief Initialize a new DHT device * * @param[out] dev device descriptor of a DHT device * @param[in] params configuration parameters * * @return 0 on success * @return -1 on error */ int dht_init(dht_t *dev, const dht_params_t *params); /** * @brief get a new temperature and humidity value from the device * * @note if reading fails or checksum is invalid, no new values will be * written into the result values * * @param[in] dev device descriptor of a DHT device * @param[out] temp temperature value [in °C * 10^-1] * @param[out] hum relative humidity value [in percent * 10^-1] * * @retval DHT_OK Success * @retval DHT_NOCSUM Checksum error * @retval DHT_TIMEOUT Reading data timed out (check wires!) */ int dht_read(dht_t *dev, int16_t *temp, int16_t *hum); #ifdef __cplusplus } #endif #endif /* DHT_H */ /** @} */