-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcolton_loop2.ino
97 lines (84 loc) · 2.65 KB
/
colton_loop2.ino
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// cw coleman neo RGBW circular
// http://www.letsarduino.com/project-13-angle-indicator-with-servo-motor-and-5-buttons-an-arduino/
#include <Adafruit_NeoPixel.h>
#ifdef __AVR__
#include <avr/power.h>
#endif
#define PIN 6
#define NUM_LEDS 16
#define BRIGHTNESS 25
Adafruit_NeoPixel strip = Adafruit_NeoPixel(NUM_LEDS, PIN, NEO_GRBW + NEO_KHZ800);
// define input pins
const int button2 = 2; // the number of the pushbutton pin
const int button3 = 3; // the number of the pushbutton pin
const int button4 = 4;
const int button5 = 5;
const int led13 = 13; // the number of the LED pin
//button state
int buttonState2 = 0;
int buttonState3 = 0;
int buttonState4 = 0;
int buttonState5 = 0;
void setup() {
Serial.begin(9600);
// This is for Trinket 5V 16MHz, you can remove these three lines if you are not using a Trinket
#if defined (__AVR_ATtiny85__)
if (F_CPU == 16000000) clock_prescale_set(clock_div_1);
#endif
// End of trinket special code
strip.setBrightness(BRIGHTNESS);
strip.begin();
strip.show(); // Initialize all pixels to 'off'
// initialize the LED pin as an output:
pinMode(led13, OUTPUT);
// initialize the pushbutton pin as an input:
pinMode(button2, INPUT);
pinMode(button3, INPUT);
}
//set up variables
int red,green,blue,white;
//set first led and total leds
int first = 10;
int leds = 16;
int count;
int val = LOW;
//The event loop *************************
void loop() {
// button code
val = digitalRead(button2);
if (val == HIGH)
{
first = 0; leds = 16; red = 255, green = 0; blue = 0; white = 30;
circular(first,leds,red,green,blue,white);
val = LOW;
first = 0; leds = 16; red = 0, green = 0; blue = 0; white = 0;
circular(first,leds,red,green,blue,white);
}
val = digitalRead(button3);
if (val == HIGH)
{
first = 0; leds = 16; red = 0, green = 0; blue = 255; white = 30;
circular(first,leds,red,green,blue,white);
val = LOW;
first = 0; leds = 16; red = 0, green = 0; blue = 0; white = 0;
circular(first,leds,red,green,blue,white);
}
//end button code
}
// end of the event loop *************************
//red function
void circular(int s, int lds, int r,int g,int b,int w){
// s:start lds:the number of leds r:red g:green b:blue w:white
int delayVal = 10;// change the delayVal to speed things up
int j,k;
k = s;
//Serial.println();//debug
for(j = s; j < lds ; j++){
// Serial.println (s);//debug
strip.setPixelColor(k, strip.Color(r,g,b,w ));
delay(delayVal);
strip.show();
k++; // increase s by 1;
if (k > (15)) { k = 0;}
}
}