MotoTrak

Dependencies:   TextLCD mbed

parse.h

Committer:
justedwa
Date:
2018-04-30
Revision:
1:469510ddcd87
Parent:
0:454412fa8fee

File content as of revision 1:469510ddcd87:

#ifndef parse_H
#define parse_H
struct info{
    int accel;
    int lean;
    float x;
    float y;
    int hr;
    float speed;
    int temp;
    int humidity;
    int gear;
    int crash;
};
int parse(char*,info*);
void initializeStruct(info*);
#endif