trabalho final

Dependencies:   X_NUCLEO_IKS01A1-f255a2c75ecb mbed-rtos mbed

log.h

Committer:
Jacinta
Date:
2016-05-18
Revision:
35:34bbca276f99
Parent:
25:2197b8bb930c

File content as of revision 35:34bbca276f99:

#ifndef LOGSTRUCT_H
#define LOGSTRUCT_H

#include <time.h>

typedef struct  {
    float    tempCelsius;
    float    humidity;
    float    pressure;
    time_t   date;
    int      counter;
} log_data ;

#endif