Justin Edwards / Mbed 2 deprecated BLIRQ

Dependencies:   TextLCD mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers parse.h Source File

parse.h

00001 #ifndef parse_H
00002 #define parse_H
00003 struct info{
00004     int accel;
00005     int lean;
00006     float x;
00007     float y;
00008     int hr;
00009     float speed;
00010     int temp;
00011     int humidity;
00012     int gear;
00013     int crash;
00014 };
00015 int parse(char*,info*);
00016 void initializeStruct(info*);
00017 #endif