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: mbed TrapezoidControl QEI
Input/Switch/Switch.cpp
- Committer:
- kishibekairohan
- Date:
- 2018-09-22
- Revision:
- 2:c015739085d3
- Parent:
- 1:b1219d8ca117
- Child:
- 4:ba9df71868df
File content as of revision 2:c015739085d3:
#include "Switch.h"
#include <stdint.h>
#include "mbed.h"
namespace SWITCH {
    DigitalIn dipSw[] = {
        DigitalIn(DIP0_PIN),
        DigitalIn(DIP1_PIN),
        DigitalIn(DIP2_PIN),
        DigitalIn(DIP3_PIN),
    };
    DigitalIn limitSw(LS_PIN);
    DigitalOut selectPin[] = {
        DigitalOut(SELECT0_PIN),
        DigitalOut(SELECT1_PIN),
        DigitalOut(SELECT2_PIN),
        DigitalOut(SELECT3_PIN),
    };
    void DipSw::Initialize() {
        for(uint8_t i=0; i < sizeof(dipSw)/sizeof(dipSw[0]); i++) {
            dipSw[i].mode(PullUp);
        }
    }
    uint8_t DipSw::GetStatus() {
        if(DIP0 == SW_ON)       return 0;
        else if(DIP1 == SW_ON)  return 1;
        else if(DIP2 == SW_ON)  return 2;
        else if(DIP3 == SW_ON)  return 3;
        return 0;
    }
    void LimitSw::Initialize() {
        for(uint8_t i=0; i<4; i++) selectPin[i] = 0;
        limitSw.mode(PullUp);
    }
    bool LimitSw::IsPressed(int index) {
        // if(index > 0x0f) return false;
        //printf("%d\n", index);
        MP_Channel ch;
        
        switch(index){
            case 0:
            ch.all = 10;
            break;
            case 1:
            ch.all = 11;
            break;
            case 2:
            ch.all = 8;
            break;
            case 3:
            ch.all = 9;
            break;
            case 4:
            ch.all = 6;
            break;
            case 5:
            ch.all = 7;
            break;
            case 6:
            ch.all = 4;
            break;
            case 7:
            ch.all = 5;
            break;
            case 8:
            ch.all = 2;
            break;
            case 9:
            ch.all = 3;
            break;
        }
        
        selectPin[0] = ch.s0;
        selectPin[1] = ch.s1;
        selectPin[2] = ch.s2;
        selectPin[3] = ch.s3;
        wait_us(1);
        return limitSw ? false : true;
    }
}