summaryrefslogtreecommitdiff
path: root/Colours.h
diff options
context:
space:
mode:
Diffstat (limited to 'Colours.h')
-rw-r--r--Colours.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/Colours.h b/Colours.h
new file mode 100644
index 0000000..977531d
--- /dev/null
+++ b/Colours.h
@@ -0,0 +1,19 @@
+/*
+ * 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