led_RGB

Low_device.h

Committer:
ht
Date:
2016-02-27
Revision:
1:06b34a8b0554
Parent:
0:bd903d88d2c8
Child:
2:f1ae9529e6ee

File content as of revision 1:06b34a8b0554:

#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)
  
private:  

};
 
#endif