Skip to content

Commit

Permalink
expanded the description of what serial_ino does
Browse files Browse the repository at this point in the history
  • Loading branch information
David Mets committed Mar 7, 2024
1 parent 50272f8 commit ccb330a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion firmware_src/arduino_src/serial_io.ino
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
//A simple system for passing variable values to and from the arduino
//A simple system for passing variable values to and from the arduino.
//The function serialEvent watches the serial connection for for ascii characters
//and adds those characters to a buffer. When it recieves a semicolon it considers
//the buffer to contain a command. It can handle the commands GET and SET to allow
//passing variables from the computer to the arduino

void serialEvent() {
// concatinate incoming characters from the serial port
Expand Down

0 comments on commit ccb330a

Please sign in to comment.