Fast leds debug serial input #72

Merged
Squatnet merged 7 commits from FastLedsSerialInput into DV2Work 2019-03-28 20:14:36 +00:00
Squatnet commented 2019-03-28 19:18:35 +00:00 (Migrated from github.com)
 #ifdef DEBUG
  if (Serial.available()){
    String str = "";
    while (Serial.available()) {
      char c = Serial.read();
      str.concat(c);
      delay(30);
    }
    if (str != "") {
      parser(str);
      str = "";
    }
  }
 #endif
``` #ifdef DEBUG if (Serial.available()){ String str = ""; while (Serial.available()) { char c = Serial.read(); str.concat(c); delay(30); } if (str != "") { parser(str); str = ""; } } #endif ```
Squatnet commented 2019-03-28 19:25:47 +00:00 (Migrated from github.com)

#define DAVAIL(...) Serial.available()
#define DREAD(...) Serial.read()
didnt work as its not great at returning values

#define DAVAIL(...) Serial.available() #define DREAD(...) Serial.read() didnt work as its not great at returning values
Squatnet commented 2019-03-28 20:14:34 +00:00 (Migrated from github.com)

MErge?

MErge?
Squatnet commented 2019-03-28 20:15:26 +00:00 (Migrated from github.com)

dont forget to git branch -d FastLedsSerialInput

dont forget to git branch -d FastLedsSerialInput
kieran-boyle commented 2019-03-28 20:16:44 +00:00 (Migrated from github.com)

i did it from website ill check the tree now
yeah i merged as i was getting expected outputs can continue from here, wasnt that the plan? lol

i did it from website ill check the tree now yeah i merged as i was getting expected outputs can continue from here, wasnt that the plan? lol
Squatnet commented 2019-03-28 20:21:14 +00:00 (Migrated from github.com)

Yep exactly it. It's still there locally tho. Branch -d deletes the local
branch

On Thu, 28 Mar 2019, 20:16 kieran-boyle, notifications@github.com wrote:

i did it from website ill check the tree now
yeah i merged as i was getting expected outputs can continue from here,
wasnt that the plan? lol


You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
https://github.com/Squatnet/ArduinoStuff/pull/72#issuecomment-477754540,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AZCEGhH9wA2oC7BMTdyEplZhN_VFuZeYks5vbSMsgaJpZM4cQ88H
.

Yep exactly it. It's still there locally tho. Branch -d deletes the local branch On Thu, 28 Mar 2019, 20:16 kieran-boyle, <notifications@github.com> wrote: > i did it from website ill check the tree now > yeah i merged as i was getting expected outputs can continue from here, > wasnt that the plan? lol > > — > You are receiving this because you authored the thread. > Reply to this email directly, view it on GitHub > <https://github.com/Squatnet/ArduinoStuff/pull/72#issuecomment-477754540>, > or mute the thread > <https://github.com/notifications/unsubscribe-auth/AZCEGhH9wA2oC7BMTdyEplZhN_VFuZeYks5vbSMsgaJpZM4cQ88H> > . >
kieran-boyle commented 2019-03-28 20:22:35 +00:00 (Migrated from github.com)

yeah i did it cheers

yeah i did it cheers
Sign in to join this conversation.
No description provided.