SmartREST client reference implementation for the u-blox C027 mbed compatible device.

Dependencies:   C027 C027_Support mbed mbed-rtos MbedSmartRest LM75B MMA7660 C12832

Fork of MbedSmartRestTest by Vincent Wochnik

io.h

Committer:
vwochnik
Date:
2014-02-18
Revision:
17:877a9a3148a4
Parent:
15:0ccf0f530a05
Child:
19:7bee744fe527

File content as of revision 17:877a9a3148a4:

#ifndef IO_H
#define IO_H

#include "common.h"
#include "LM75B.h"
#include "MMA7660.h"
#include "C12832.h"

typedef struct
{
    float x, y, z;
} acceleration_t;

void io_init(void);
float temperature();
acceleration_t acceleration();
uint32_t counter();

#endif