ok

Dependencies:   QEI mbed

Fork of MainBoard2018_Auto_Master_A_neww by Taiki Maruyama

Input/Switch/Switch.h

Committer:
kishibekairohan
Date:
2018-10-21
Revision:
15:dfcec98f5aa9
Parent:
1:b1219d8ca117

File content as of revision 15:dfcec98f5aa9:

#ifndef SWITCH_H_
#define SWITCH_H_

#include "mbed.h"
#include <stdint.h>

namespace SWITCH {
    #define SW_ON   0
    #define SW_OFF  1

    
    #define DIP0_PIN    PA_8
    #define DIP1_PIN    PB_10
    #define DIP2_PIN    PB_4
    #define DIP3_PIN    PB_5

    //マルチプレクサ
    #define LS_PIN      PB_6
    #define SELECT0_PIN PC_8
    #define SELECT1_PIN PC_9
    #define SELECT2_PIN PB_9
    #define SELECT3_PIN PB_8

    //Dipsw
    #define DIP0    dipSw[0]
    #define DIP1    dipSw[1]
    #define DIP2    dipSw[2]
    #define DIP3    dipSw[3]

    class DipSw {
        public:
        static void Initialize();
        static uint8_t GetStatus();
    };
    
    class LimitSw {
        public:
        static void Initialize();
        static bool IsPressed(int index);
    };

    typedef union {
        struct {
            int s0 : 1;
            int s1 : 1;
            int s2 : 1;
            int s3 : 1;
            int : 4;
        };
        uint8_t all;
    } MP_Channel;
}

#endif