Instruction: https://wp.nyu.edu/shanghai-ima-interaction-lab/recitation-8-serial-communication-2/ The recitation asked us to make two design which required commnucation between Arduino and Processing using Serial. The first project asked us to use two potentiometers' value to draw picture on Processing. I built the circuit and wrote the Arduino code which can get value of potentiometers and send the value in serial using serialrecord library and tested: #include "SerialRecord.h" SerialRecord writer(2); void setup() { // put your setup code here, to run once: … [Read more...] about Recitation8 Documentation