About 109,000 results
Open links in new tab
  1. Serial Input Basics - updated - Tutorials - Arduino Forum

    Apr 25, 2016 · Serial data is slow by Arduino standards When anything sends serial data to the Arduino it arrives into the Arduino input buffer at a speed set by the baud rate. At 9600 baud about 960 …

  2. Serial Input Basics - Programming - Arduino Forum

    Dec 26, 2014 · Serial data is slow by Arduino standards When anything sends serial data to the Arduino it arrives into the Arduino input buffer at a speed set by the baud rate. At 9600 baud about 960 …

  3. Wokwi Simulations for Arduino Built-In Examples

    Sep 24, 2024 · This thread contains links to Wokwi simulations for some of the Arduino Built-In Examples The built-in examples are available within the IDE under the File/Examples/ tab. Basics …

  4. Sending multiple inputs over serial using a while loop - Arduino Forum

    Jul 2, 2021 · Arduino Software Solutions has a number of examples of reading from Serial each with their pros and cons. I suggest you use one of the non-block examples and a small state machine to …

  5. Serial Input Advanced - Tutorials - Arduino Forum

    Feb 2, 2020 · This is an advanced tutorial that builds upon Robin2’s tutorial Serial Input Basics. In this tutorial, we will go over how to: construct more robust serial data packets implement COBS calculate …

  6. How many ways to 'wait' for Serial monitor ready, is it ... - Arduino Forum

    Jan 8, 2025 · I have seen a few different ways to 'wait' for the Serial monitor to be ready, from simple delays after the begin to a couple of explicit functions. Here is my favourite, who has some …

  7. Parsing Serial Data and separating it into variables - Arduino Forum

    Oct 17, 2020 · Hi, the important parts of my program are 'void RecvWithStartEndMarkers ()' and 'void ParseData ()' that came from ' Serial Input Basics - updated - Introductory Tutorials - Arduino Forum …

  8. Read char over serial [SOLVED] - Programming - Arduino Forum

    Mar 30, 2013 · Hi, im trying to send an array of char over serial to my arduino uno. My arry would be something like 12345. Im trying to only read the first character of the array. That's what i got so far. …

  9. Reading and using a value from the serial monitor - Arduino Forum

    Jan 20, 2023 · Good afternoon, for a personal project, I need to write code that turns on one light for a delay D and then turns on the second light for 2 seconds. But for delay D I need that the program …

  10. Clearing serial buffer solved - Education - Arduino Forum

    Apr 18, 2014 · Recall that the older arduino flushing function did clear the serial input buffer, but they changed it around IDE => 1.0 to flush only the output transmit buffer and left no function to clear the …