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:
19:7bee744fe527
Parent:
17:877a9a3148a4
Child:
20:ef9cc1b42e9d

File content as of revision 19:7bee744fe527:

#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();
double potentiometer(uint8_t n);

#endif