Miya Miyagawa
/
mainboardnrp2018
aaaaa
Input/Switch/Switch.cpp
- Committer:
- Ryosei
- Date:
- 2019-02-21
- Revision:
- 10:53a92f2ab1c4
- Parent:
- 9:6901b1dfa688
File content as of revision 10:53a92f2ab1c4:
#include "Switch.h" #include <stdint.h> DigitalIn limitSw[] = { DigitalIn(LIMITSW0_PIN), DigitalIn(LIMITSW1_PIN), // DigitalIn(LIMITSW2_PIN), // DigitalIn(LIMITSW3_PIN), }; namespace SWITCH { void Switch::Initialize(void) { for(uint8_t i = 0; i < MOUNTING_LIMITSW_NUM; i++) limitSw[i].mode(PullUp); } bool Switch::checkPushed(int mySwitch) { return mySwitch ? false : true; } }