led_RGB

Low_device.h

Committer:
ht
Date:
2017-07-13
Revision:
3:7992dc580716
Parent:
2:f1ae9529e6ee

File content as of revision 3:7992dc580716:

#ifndef LOW_DEVICE_H
#define LOW_DEVICE_H
 
#include "mbed.h"
 
class Low_device {
public:
    Low_device(void);
    void led_RGB(int led);                      // RGB LED control
    void led_OUT(int led);                      //led_out(on Motor drive board)
    unsigned int peach_button_get( void );      //PEACH_button_get(on GR-PEACH board)
    unsigned int pushsw_get( void );            //pushsw_get(on Motor drive board)
    
private:  

};
 
#endif