summaryrefslogtreecommitdiff
path: root/Colours.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Colours.cpp')
-rw-r--r--Colours.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/Colours.cpp b/Colours.cpp
new file mode 100644
index 0000000..4656a4c
--- /dev/null
+++ b/Colours.cpp
@@ -0,0 +1,15 @@
+/*
+ * Colours - library for managing the colours on RGB LEDs
+ */
+
+#include "WProgram.h"
+#include "Colours.h"
+
+Colours::Colours(int rPin,int gPin,int bPin) {
+ _rPin = rPin;
+ _gPin = gPin;
+ _bPin = bPin;
+ pinMode(_rPin,OUTPUT);
+ pinMode(_gPin,OUTPUT);
+ pinMode(_bPin,OUTPUT);
+}