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: SDFileSystem emic2 mbed-rtos mbed
Fork of BAT_senior_design_Testnew by
buttonArray.h
- Committer:
- aismail1997
- Date:
- 2017-10-27
- Revision:
- 21:ceac47be2e64
- Child:
- 22:abbc12fca525
File content as of revision 21:ceac47be2e64:
#include "mbed.h"
#include "button.h"
// This is a button class for our custom button
class buttonArray {
// buttons
private:
// 6 buttons here
button button1;
button button2;
button button3;
button button4;
button button5;
button button6;
int currVal;
public:
// constructors
buttonArray(); // Default
buttonArray(button button1, button button2, button button3, button button4, button button5, button button6);
// functions
//int getState(); // determine what state the button is in - up or down
//void moveServoIn(); // move servo into the slot
//void moveServoOut(); // move servo out of the slot
int checkVal();
};
