From: daniel watson Date: Fri, 13 Jun 2014 18:42:08 +0000 (-0700) Subject: fix content to reflect filename changes X-Git-Url: http://challenge-bot.com/repos/?p=challenge-bot;a=commitdiff_plain;h=bb70e701efbc8b3128ce842a7305cca471ea9d3c fix content to reflect filename changes --- diff --git a/build-stages/a_serial/README b/build-stages/a_serial/README index 2f0c580..d6ade53 100644 --- a/build-stages/a_serial/README +++ b/build-stages/a_serial/README @@ -1,7 +1,7 @@ (how to use this (connect your robot to your computer via usb cable) (open arduino ide) - (in arduino ide, open serial.ino) + (in arduino ide, open a_serial.ino) (hit the upload button) (hit control+shift+m, or go to the menu item tools, and down to serial monitor) diff --git a/build-stages/a_serial/a_serial.ino b/build-stages/a_serial/a_serial.ino index 420fc32..2fd7308 100644 --- a/build-stages/a_serial/a_serial.ino +++ b/build-stages/a_serial/a_serial.ino @@ -13,8 +13,8 @@ along with this program. If not, see . */ -void setup(){ +void setup() { Serial.begin(9600); - Serial.println("hello computer!");} + Serial.println("hello computer!"); } -void loop(){} +void loop() {}