Nelson Santos / Mbed 2 deprecated trabalho

Dependencies:   X_NUCLEO_IKS01A1-f255a2c75ecb mbed-rtos mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers log.h Source File

log.h

00001 #ifndef LOGSTRUCT_H
00002 #define LOGSTRUCT_H
00003 
00004 #include <time.h>
00005 
00006 typedef struct  {
00007     float    tempCelsius;
00008     float    humidity;
00009     float    pressure;
00010     time_t   date;
00011     int      counter;
00012 } log_data ;
00013 
00014 #endif