1. One At A Time:
- [ ] Serial.print
- [ ] webserial
- [ ] uploading
2. Upper/Lower Case
Arduino |
Serial.write() |
Serial.println() |
p5.js |
serial.read() |
Serial.readLine() |
|
|
|
3. Bytes And Binary
- [ ] 1 byte = 8 bits, 1byte, 00000000~11111111 ⇒ 0~255
- [ ] YOU HAVE TO MAP IT INTO 255
THIS IS Serial.println:
(Sending binary, output numbers)

THIS IS Serial.write
(Sending binary, output ASCII)
