A simple WIP that logs data from a Grove sensor, and can send and receive information over USB and SMS.

Dependencies:   DHT DS_1337 SDFileSystem USBDevice mbed

Embed: (wiki syntax)

« Back to documentation index

Dht22Result Struct Reference

Dht22Result Struct Reference

The Dht22Result struct is the information read from a Dht22 Grove sensor. More...

#include <GroveDht22.h>

Data Fields

time_t resultTime
 timestamp of when the result was returned from the Dht22
float lastCelcius
 Temperature result (degC)
float lastHumidity
 Humidity result.
float lastDewpoint
 Dewpoint result.

Detailed Description

The Dht22Result struct is the information read from a Dht22 Grove sensor.

Definition at line 13 of file GroveDht22.h.


Field Documentation

float lastCelcius

Temperature result (degC)

Definition at line 15 of file GroveDht22.h.

float lastDewpoint

Dewpoint result.

Definition at line 17 of file GroveDht22.h.

float lastHumidity

Humidity result.

Definition at line 16 of file GroveDht22.h.

time_t resultTime

timestamp of when the result was returned from the Dht22

Definition at line 14 of file GroveDht22.h.