blob: 00a48d7fd51bd330ba40444e514564f475b98b35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
* hue_rotation - Cycle an RGB LED through hue values.
* Copyright 2009, 2013 Elena Grandi
*
* This work is free. You can redistribute it and/or modify it under the
* terms of the Do What The Fuck You Want To Public License, Version 2,
* as published by Sam Hocevar. See the examples/wtfpl-2.txt file
* for more details.
*/
#include <Colours.h>
Colours colours(6,5,3);
// For common cathode RGB LEDs comment the line above and uncomment
// the one below.
//Colours colours(6,5,3,true);
void setup() {
}
void loop() {
int h;
for (h=0;h<360;h++) {
colours.writeHSV(h,255,255);
delay(50);
}
}
|