Wednesday, March 4, 2015

Using the serial monitor





Simple program that uses the serial monitor:

void setup() { 
 //Initialize serial and wait for port to open:
  Serial.begin(19200); 
}
void loop() {
  Serial.println("Hello world");
}  


No comments:

Post a Comment