Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

4
  • Amazing stuff! Great work! Commented Jan 22, 2016 at 18:22
  • However, i'm having an issue, it never reached the IF condition, so i did some debugging: Serial.print(window[0]); Serial.print("="); Serial.print(window[9]); Serial.println(); And it's returning some weird results: 0=170 0=192 0=85 0=1 0=115 0=1 Shouldnt the first number be a byte? Shouldnt the second one be static as well? Why is the second number changing for each row? Commented Jan 22, 2016 at 18:24
  • You might be better off dumping the whole window each time. I'll add a little function to do that. Commented Jan 22, 2016 at 19:00
  • 1
    @R0b0tn1k By the way, 170 is 0xAA - the first number in the = will change to 170 when it finally reaches the bottom of the window (10 characters have been received). Commented Jan 22, 2016 at 19:16