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.
Input/Switch/Switch.cpp
- Committer:
- t_yamamoto
- Date:
- 2018-01-13
- Revision:
- 0:562021ed1ba9
- Child:
- 1:e73cf2469f83
File content as of revision 0:562021ed1ba9:
#include "Switch.h"
#include <stdint.h>
DigitalIn limitSw[] = {
DigitalIn(LIMITSW0_PIN),
DigitalIn(LIMITSW1_PIN),
DigitalIn(LIMITSW2_PIN),
DigitalIn(LIMITSW3_PIN),
DigitalIn(LIMITSW4_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;
}
}