summaryrefslogtreecommitdiff
path: root/examples/hue_rotation/hue_rotation.pde
diff options
context:
space:
mode:
authorElena of Valhalla'' Grandi <valhalla@trueelena.org>2013-08-14 11:14:47 +0200
committerElena of Valhalla'' Grandi <valhalla@trueelena.org>2013-08-14 11:14:47 +0200
commitf1b7e9364074571899063e9f668a00eb60d2269a (patch)
treef90a8f7e068f41666232efdd662d4daeb037ee14 /examples/hue_rotation/hue_rotation.pde
parent1d841c9533a841b403940a6d766ff2503f3619b3 (diff)
Migration to arduino 1.0
Diffstat (limited to 'examples/hue_rotation/hue_rotation.pde')
-rw-r--r--examples/hue_rotation/hue_rotation.pde14
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/hue_rotation/hue_rotation.pde b/examples/hue_rotation/hue_rotation.pde
deleted file mode 100644
index 2151618..0000000
--- a/examples/hue_rotation/hue_rotation.pde
+++ /dev/null
@@ -1,14 +0,0 @@
-#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);
- }
-}