/* * 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); private: int _rPin; int _gPin; int _bPin; }; #endif