MotoTrak

Dependencies:   TextLCD mbed

parse.h

Committer:
justedwa
Date:
2018-04-24
Revision:
0:454412fa8fee
Child:
1:469510ddcd87

File content as of revision 0:454412fa8fee:

#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 parse(char*,info*);
void initializeStruct(info*);
#endif