aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlynxeyed-atsu <lynxeyed@xj9.so-net.ne.jp>2012-05-14 00:32:02 +0900
committerlynxeyed-atsu <lynxeyed@xj9.so-net.ne.jp>2012-05-14 00:32:02 +0900
commit54b0879bb67be1b24ea8b15c4cf2dd2678e11206 (patch)
tree2073e7aab3f065d5f2ce51f0879155470f49a02c
parentdddf8e35f8274ec2ef422cb323d51c80e840f579 (diff)
Fix example code
-rwxr-xr-xsrc/user_application.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user_application.cpp b/src/user_application.cpp
index 3b33af8..46352cc 100755
--- a/src/user_application.cpp
+++ b/src/user_application.cpp
@@ -11,7 +11,7 @@ void loop()
while(1)
{
- serial.println(millis()/1000);
+ Serial.println(millis()/1000);
}
}