8 lines
113 B
C
8 lines
113 B
C
|
|
#ifndef GEAR_H
|
||
|
|
#define GEAR_H
|
||
|
|
|
||
|
|
void gear_init();
|
||
|
|
int gear_get(int rpm); // Returns gear 0-6 (0=neutral)
|
||
|
|
|
||
|
|
#endif
|