From bb70e701efbc8b3128ce842a7305cca471ea9d3c Mon Sep 17 00:00:00 2001 From: daniel watson Date: Fri, 13 Jun 2014 11:42:08 -0700 Subject: [PATCH] fix content to reflect filename changes --- build-stages/a_serial/README | 2 +- build-stages/a_serial/a_serial.ino | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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() {} -- 2.30.2