Miya Miyagawa
/
mainboardnrp2018
aaaaa
Input/Switch/Switch.h
- Committer:
- Ryosei
- Date:
- 2019-02-21
- Revision:
- 10:53a92f2ab1c4
- Parent:
- 9:6901b1dfa688
File content as of revision 10:53a92f2ab1c4:
#ifndef SWITCH_H_ #define SWITCH_H_ #include "mbed.h" extern DigitalIn limitSw[]; namespace SWITCH { #define LIMITSW0_PIN A7 #define LIMITSW1_PIN A6 // #define LIMITSW2_PIN A5 // #define LIMITSW3_PIN A4 #define MOUNTING_LIMITSW_NUM 2 class Switch { public: static void Initialize(void); static bool checkPushed(int mySwitch); }; } #endif