can't push chnages :(

Fork of FBRDash by Michael Allan

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers State.h Source File

State.h

00001 #ifndef FBRDASH_STATE_H
00002 #define FBRDASH_STATE_H
00003 
00004 struct State
00005 {
00006     unsigned short int rpm;
00007     unsigned char throttle_pos;
00008     unsigned char manifold_pres;
00009     unsigned char air_temp;
00010     float coolant_temp;
00011     unsigned char lambda;
00012     unsigned char speed;
00013     unsigned char accel_x;
00014     unsigned char accel_y;
00015     unsigned char gear;
00016     unsigned char oil_temp;
00017     unsigned char warnings;
00018     float voltage;
00019 };
00020 
00021 #endif