/* * Colours - library for managing the colours on RGB LEDs */ #ifndef COLOURS_h #define COLOURS_h #include "WProgram.h" class Colours { public: Colours(int rPin,int gPin,int bPin); void writeRGB(char r,char g,char b); void writeHSV(char h,char s,char v); private: int _rPin,_gPin,_bPin; }; #endif