summaryrefslogtreecommitdiff
path: root/Colours.h
diff options
context:
space:
mode:
Diffstat (limited to 'Colours.h')
-rw-r--r--Colours.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Colours.h b/Colours.h
index 977531d..fb57af4 100644
--- a/Colours.h
+++ b/Colours.h
@@ -10,10 +10,10 @@
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;
- int _gPin;
- int _bPin;
+ int _rPin,_gPin,_bPin;
};
#endif