File source

#ifndef _COLOR_H_
#define _COLOR_H_


#define PIN_RED  (1<<3)
#define PIN_GREEN (1<<5)
#define PIN_BLUE (1<<1)

class Color{
  public:
    static void red();
    static void green();
    static void blue();
    static void white();
    static void off();
};


#endif