Skip to content

Commit

Permalink
Merge pull request #13 from dmadison/timeouts
Browse files Browse the repository at this point in the history
Updated Timeouts
  • Loading branch information
dmadison authored Dec 5, 2017
2 parents 377362d + 79edc69 commit 9a66ac9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Arduino/LEDstream_FastLED/LEDstream_FastLED.ino
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ static const uint8_t
static const unsigned long
SerialSpeed = 115200; // serial port speed
static const uint16_t
SerialTimeout = 150; // time before LEDs are shut off if no data (in seconds)
SerialTimeout = 60; // time before LEDs are shut off if no data (in seconds), 0 to disable

// --- Optional Settings (uncomment to add)
#define SERIAL_FLUSH // Serial buffer cleared on LED latch
Expand Down Expand Up @@ -234,12 +234,12 @@ void dataSet(){
void timeouts(){
// No data received. If this persists, send an ACK packet
// to host once every second to alert it to our presence.
if((t - lastAckTime) > 1000) {
if((t - lastAckTime) >= 1000) {
Serial.print("Ada\n"); // Send ACK string to host
lastAckTime = t; // Reset counter

// If no data received for an extended time, turn off all LEDs.
if((t - lastByteTime) > SerialTimeout * 1000) {
if(SerialTimeout != 0 && (t - lastByteTime) >= (uint32_t) SerialTimeout * 1000) {
memset(leds, 0, Num_Leds * sizeof(struct CRGB)); //filling Led array by zeroes
FastLED.show();
mode = Header;
Expand Down

0 comments on commit 9a66ac9

Please sign in to comment.