diff options
author | bnewbold <bnewbold@robocracy.org> | 2010-06-07 14:46:48 -0400 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2010-06-07 14:46:48 -0400 |
commit | c8cee2368cad0cc1c5593cca6635b45b8610c1e2 (patch) | |
tree | d62252f8d3345c77b93b8488eebcdc35c499f5ae /examples/test-session.cpp | |
parent | 1a9b0c0790b18673fa8d94c5d3d1fd1c416ec717 (diff) | |
download | librambutan-c8cee2368cad0cc1c5593cca6635b45b8610c1e2.tar.gz librambutan-c8cee2368cad0cc1c5593cca6635b45b8610c1e2.zip |
test session serial fix
Diffstat (limited to 'examples/test-session.cpp')
-rw-r--r-- | examples/test-session.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/test-session.cpp b/examples/test-session.cpp index 40ffaca..1c0f628 100644 --- a/examples/test-session.cpp +++ b/examples/test-session.cpp @@ -56,14 +56,14 @@ void setup() { pinMode(LED_PIN, OUTPUT); /* Send a message out over COMM interface */ - //COMM.begin(115200); // if USART; 9600 is more compatible - COMM.println(""); + Serial2.begin(9600); // if USART; 9600 is more compatible + COMM.println(" "); COMM.println(" __ __ _ _"); COMM.println(" | \\/ | __ _ _ __ | | ___| |"); COMM.println(" | |\\/| |/ _` | '_ \\| |/ _ \\ |"); COMM.println(" | | | | (_| | |_) | | __/_|"); COMM.println(" |_| |_|\\__,_| .__/|_|\\___(_)"); - COMM.println(" |_|"); + COMM.println(" |_|"); COMM.println(" by leaflabs"); COMM.println(""); COMM.println(""); |