Building
Gadgets:
anĀ Open
Electronics
Lab

Fall 2012
course
navigation

Nov 5

Discuss final project progress

Jacob:
Ordered WiFly and stuffs
Alex:
Mapping robot

Talk about similar projects

...

If time allows

Things to talk about:
Serial example:
void setup() { Serial.begin(9600); } void loop() { char buffer[128]; int i; if (Serial.available()) { i = 0; while(Serial.available()) { buffer[i] = Serial.read(); i++; delay(1); } buffer[i] = 0; Serial.print("You sent: "); Serial.println(buffer); } }
http://cs.marlboro.edu/ courses/ fall2012/gadgets/ notes/ Nov_5
last modified Monday November 5 2012 2:34 pm EST