Working read code with mode button
Dependencies: SDFileSystem emic2 mbed-rtos mbed
Fork of BAT_senior_design_Testnew by
button.h
- Committer:
- aismail1997
- Date:
- 2017-11-01
- Revision:
- 23:c5df903f068a
- Parent:
- 21:ceac47be2e64
- Child:
- 29:b2e53ce54b3e
File content as of revision 23:c5df903f068a:
#include "mbed.h" #ifndef BUTTON_H #define BUTTON_H // This is a button class for our custom button class button { // pins connected to the button private: PwmOut servo; DigitalIn pb; int state; // where is the button (0 - 4) int press; // is the button up or down int id; // this is the ID, each button should have a unique id // int mode; // is the system in reading or typing mode //AnalogIn linpot; public: // constructors button(); // Default button(PwmOut servo, DigitalIn pb, int id); //button(PwmOut servo, DigitalIn pb, AnalogIn linpot); // button(PwmOut servo, DigitalIn pb, AnalogIn linpot); // functions PwmOut getServoPin(); // get the servo pin //void setState(int state); // set state //void setMode(int mode); // set mode void setState(int); // set what state the button is in - up or down void setPress(int); // set the button press void moveServoIn(); // move servo into the slot void moveServoOut(); // move servo out of the slot int getID(); int updateState(); int getState(); int getPress(); int getLp(); }; #endif