summaryrefslogtreecommitdiff
path: root/examples/hue_rotation/hue_rotation.ino
blob: 2151618a9b21d1811badadae312dee1df6313e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <Colours.h>

Colours colours(6,5,3);

void setup() {
}

void loop() {
    int h;
    for (h=0;h<360;h++) {
        colours.writeHSV(h,255,255);
        delay(50);
    }
}