Skip to content

Commit

Permalink
Merge pull request #12 from dmadison/development
Browse files Browse the repository at this point in the history
'Serial Flush' and Housekeeping
  • Loading branch information
dmadison authored Jun 9, 2017
2 parents 393a4ac + 9fa76f4 commit 377362d
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 18 deletions.
49 changes: 36 additions & 13 deletions Arduino/LEDstream_FastLED/LEDstream_FastLED.ino
Original file line number Diff line number Diff line change
@@ -1,15 +1,30 @@
/* LEDstream_FastLED
*
* Modified version of Adalight protocol that uses the FastLED
* Modified version of Adalight that uses the FastLED
* library (http://fastled.io) for driving led strips.
*
* http://github.com/dmadison/Adalight-FastLED
* Last Updated: 2017-05-05
*
* --------------------------------------------------------------------
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* --------------------------------------------------------------------
*/

// --- General Settings
static const uint8_t
Num_Leds = 80, // strip length
static const uint16_t
Num_Leds = 80; // strip length
static const uint8_t
Led_Pin = 6, // Arduino data output pin
Brightness = 255; // maximum brightness

Expand All @@ -19,11 +34,12 @@ static const uint8_t

// --- Serial Settings
static const unsigned long
SerialSpeed = 115200; // serial port speed, max available
SerialSpeed = 115200; // serial port speed
static const uint16_t
SerialTimeout = 150; // time before LEDs are shut off if no data (in seconds)

// --- Optional Settings (uncomment to add)
#define SERIAL_FLUSH // Serial buffer cleared on LED latch
//#define CLEAR_ON_START // LEDs are cleared on reset
//#define GROUND_PIN 10 // additional grounding pin (optional)
//#define CALIBRATE // sets all LEDs to the color of the first
Expand Down Expand Up @@ -62,11 +78,8 @@ static const uint8_t magic[] = {
#define LOCHECK (MAGICSIZE + 1)
#define CHECKSUM (MAGICSIZE + 2)

#define MODE_HEADER 0
#define MODE_DATA 1
enum processModes_t {Header, Data} mode = Header;

static uint8_t
mode = MODE_HEADER;
static int16_t
c;
static uint16_t
Expand Down Expand Up @@ -134,10 +147,10 @@ void adalight(){
lastByteTime = lastAckTime = t; // Reset timeout counters

switch(mode) {
case MODE_HEADER:
case Header:
headerMode();
break;
case MODE_DATA:
case Data:
dataMode();
break;
}
Expand Down Expand Up @@ -178,7 +191,7 @@ void headerMode(){
bytesRemaining = 3L * (256L * (long)hi + (long)lo + 1L);
outPos = 0;
memset(leds, 0, Num_Leds * sizeof(struct CRGB));
mode = MODE_DATA; // Proceed to latch wait mode
mode = Data; // Proceed to latch wait mode
}
headPos = 0; // Reset header position regardless of checksum result
break;
Expand All @@ -195,10 +208,13 @@ void dataMode(){

if(bytesRemaining == 0) {
// End of data -- issue latch:
mode = MODE_HEADER; // Begin next header search
mode = Header; // Begin next header search
FastLED.show();
D_FPS;
D_LED(OFF);
#ifdef SERIAL_FLUSH
serialFlush();
#endif
}
}

Expand Down Expand Up @@ -226,7 +242,14 @@ void timeouts(){
if((t - lastByteTime) > SerialTimeout * 1000) {
memset(leds, 0, Num_Leds * sizeof(struct CRGB)); //filling Led array by zeroes
FastLED.show();
mode = Header;
lastByteTime = t; // Reset counter
}
}
}

void serialFlush(){
while(Serial.available() > 0) {
byte r = Serial.read();
}
}
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,28 @@ In addition to ambilight setups, the protocol can be used to stream *any* color

For this sketch to work, you'll need to have a copy of the FastLED library. You can download FastLED [from GitHub](https://github.com/FastLED/FastLED) or through the libraries manager of the Arduino IDE. This program was writen using FastLED 3.1.3 - note that earlier versions of FastLED are untested and may not work properly.

## Configuration
For more information on my own ambilight setup, see [the project page](http://www.partsnotincluded.com/projects/ambilight/) on [PartsNotIncluded.com](http://www.partsnotincluded.com/).

## Basic Setup

Open the LEDstream_FastLED file in the Arduino IDE and customize the settings at the top for your setup. You will need to change:

- Number of LEDs
- LED data pin
- LED type

Additional settings allow for adjusting:
Upload to your Arduino and use a corresponding PC application to stream color data. You can get the Processing files from the [main Adalight repository](https://github.com/adafruit/Adalight), though I would recommend using [Patrick Siegler's](https://github.com/psieg/) fork of Lightpacks's Prismatik, which you can find [here](https://github.com/psieg/Lightpack/releases).

## Additional Settings

There are additional settings to allow for adjusting:

- Max brightness
- LED color order
- Serial speed
- Serial timeout length

There are also optional settings to clear the LEDs on reset, configure a dedicated ground pin, and to put the Arduino into a "calibration" mode, where all LED colors match the first LED.

Upload to your Arduino and use a corresponding PC application to stream color data. You can get the Processing files from the [main Adalight repository](https://github.com/adafruit/Adalight), though I would recommend using [Patrick Siegler's](https://github.com/psieg/) fork of Lightpacks's Prismatik, which you can find [here](https://github.com/psieg/Lightpack/releases).
There are also optional settings to clear the LEDs on reset, configure a dedicated ground pin, and to put the Arduino into a "calibration" mode, where all LED colors match the first LED. To help with flickering, the option to flush the serial buffer after every latch is enabled by default.

## Debug Settings

Expand Down

0 comments on commit 377362d

Please sign in to comment.