summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/hue_rotation/hue_rotation.ino27
-rw-r--r--examples/wtfpl-2.txt14
2 files changed, 0 insertions, 41 deletions
diff --git a/examples/hue_rotation/hue_rotation.ino b/examples/hue_rotation/hue_rotation.ino
deleted file mode 100644
index 00a48d7..0000000
--- a/examples/hue_rotation/hue_rotation.ino
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * 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);
- }
-}
diff --git a/examples/wtfpl-2.txt b/examples/wtfpl-2.txt
deleted file mode 100644
index ee7d6a5..0000000
--- a/examples/wtfpl-2.txt
+++ /dev/null
@@ -1,14 +0,0 @@
- DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
- Version 2, December 2004
-
- Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
-
- Everyone is permitted to copy and distribute verbatim or modified
- copies of this license document, and changing it is allowed as long
- as the name is changed.
-
- DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
- 0. You just DO WHAT THE FUCK YOU WANT TO.
-