Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: PinDetect TextLCD mbed
Fork of FBRDash by
inc/Gears.h
- Committer:
- intrinseca
- Date:
- 2012-06-25
- Revision:
- 1:b3907b8d9f65
File content as of revision 1:b3907b8d9f65:
#ifndef FBDDASH_GEARS_H
#define FBRDASH_GEARS_H
#include "mbed.h"
#include "PinDetect.h"
#include "Comms.h"
class Gears
{
public:
Gears(PinName up, PinName neutral, PinName down, unsigned char* _currentGear, Comms* _remote);
private:
PinDetect* btnUp;
PinDetect* btnNeutral;
PinDetect* btnDown;
unsigned char* currentGear;
Comms* remote;
void up();
void down();
void neutral();
};
#endif
