From 38b9b25d4612298f5599e7471568714ea1fa2a01 Mon Sep 17 00:00:00 2001 From: Elena ``of Valhalla'' Grandi Date: Fri, 14 Mar 2025 09:20:28 +0100 Subject: Moved arduino version in its own directory --- examples/hue_rotation/hue_rotation.ino | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 examples/hue_rotation/hue_rotation.ino (limited to 'examples/hue_rotation') 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 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); - } -} -- cgit v1.2.3