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

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers io.h Source File

io.h

00001 #ifndef IO_H
00002 #define IO_H
00003 
00004 #include "common.h"
00005 #include "LM75B.h"
00006 #include "MMA7660.h"
00007 #include "C12832.h"
00008 
00009 typedef struct
00010 {
00011     float x, y, z;
00012 } acceleration_t;
00013 
00014 void io_init(void);
00015 float temperature();
00016 acceleration_t acceleration();
00017 uint32_t counter();
00018 double potentiometer(uint8_t n);
00019 void lcd_signal(int8_t rssi, uint8_t ber);
00020 void lcd_tenant(const char* tenant);
00021 void lcd_status(const char* status);
00022 
00023 #endif