Kinetic Sculpture  3.1
Software to Architecture for the Junior Kinetic Sculpture Project
 All Classes Files Functions Variables Macros Pages
LEDStrip.h
Go to the documentation of this file.
1 
3 #define RANDOM_PWM_VAL rand() % 256
5 const byte gammaCorrectionTable[] PROGMEM = {
6  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1,
8  1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2,
9  2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5,
10  5, 6, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9, 10,
11  10, 10, 11, 11, 11, 12, 12, 13, 13, 13, 14, 14, 15, 15, 16, 16,
12  17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22, 23, 24, 24, 25,
13  25, 26, 27, 27, 28, 29, 29, 30, 31, 32, 32, 33, 34, 35, 35, 36,
14  37, 38, 39, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 50,
15  51, 52, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68,
16  69, 70, 72, 73, 74, 75, 77, 78, 79, 81, 82, 83, 85, 86, 87, 89,
17  90, 92, 93, 95, 96, 98, 99, 101, 102, 104, 105, 107, 109, 110, 112, 114,
18  115, 117, 119, 120, 122, 124, 126, 127, 129, 131, 133, 135, 137, 138, 140, 142,
19  144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 167, 169, 171, 173, 175,
20  177, 180, 182, 184, 186, 189, 191, 193, 196, 198, 200, 203, 205, 208, 210, 213,
21  215, 218, 220, 223, 225, 228, 231, 233, 236, 239, 241, 244, 247, 249, 252, 255
22 };
30 class LEDStrip {
31  public:
32 
42  LEDStrip(byte red, byte green, byte blue) {
43  RED_PIN = red;
44  GREEN_PIN = green;
45  BLUE_PIN = blue;
46 
47  setupLEDStrip();
48  }
49 
58  void backlightStartTransition(byte red, byte green, byte blue, unsigned long transitionDurationMS) {
59  unsigned long startTimeMS = millis();
60  unsigned long finishTimeMS = startTimeMS + transitionDurationMS;
61  nextRed = red;
62  nextGreen = green;
63  nextBlue = blue;
64 
65  transitionCompleteFlg = false;
66 
67  if (finishTimeMS < startTimeMS){
68  finishTimeMS = startTimeMS;
69  }
70 
71  while (!transitionCompleteFlg){
72  if (currentRed < nextRed){
73  currentRed += 1;
74  }
75  else if (currentRed > nextRed){
76  currentRed -= 1;
77  }
78  if (currentGreen < nextGreen){
79  currentGreen += 1;
80  }
81  else if (currentGreen > nextGreen){
82  currentGreen -= 1;
83  }
84  if (currentBlue < nextBlue){
85  currentBlue += 1;
86  }
87  else if (currentBlue > nextBlue){
88  currentBlue -= 1;
89  }
90  setColor(currentRed, currentGreen, currentBlue);
91  delay(transitionDurationMS/255);
92  }
93  }
94 
104  void setColor(byte red, byte green, byte blue) {
105  currentRed = red;
106  currentGreen = green;
107  currentBlue = blue;
108  analogWrite(RED_PIN, pgm_read_byte(&gammaCorrectionTable[red]));
109  analogWrite(GREEN_PIN, pgm_read_byte(&gammaCorrectionTable[green]));
110  analogWrite(BLUE_PIN, pgm_read_byte(&gammaCorrectionTable[blue]));
111 
112  if (currentRed == nextRed and currentBlue == nextBlue and currentGreen == nextGreen){
113  transitionCompleteFlg = true;
114  }
115  }
116 
121  void randomColor(){
123  }
124 
125  private:
126  byte RED_PIN, GREEN_PIN, BLUE_PIN;
127  byte nextRed, nextGreen, nextBlue;
128  byte currentRed, currentGreen, currentBlue; //Saves current color for transitions
129  bool transitionCompleteFlg;
130 
136  void setupLEDStrip() {
137  pinMode(RED_PIN, OUTPUT);
138  pinMode(GREEN_PIN, OUTPUT);
139  pinMode(BLUE_PIN, OUTPUT);
140  setColor(0, 0, 0);
141  }
142 };
LEDStrip(byte red, byte green, byte blue)
Definition: LEDStrip.h:42
void randomColor()
Definition: LEDStrip.h:121
void backlightStartTransition(byte red, byte green, byte blue, unsigned long transitionDurationMS)
Definition: LEDStrip.h:58
#define RANDOM_PWM_VAL
Definition: LEDStrip.h:3
void setColor(byte red, byte green, byte blue)
Definition: LEDStrip.h:104
Definition: LEDStrip.h:30