diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/test-session.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/test-session.cpp b/examples/test-session.cpp index 37255c2..1a53c66 100644 --- a/examples/test-session.cpp +++ b/examples/test-session.cpp @@ -81,7 +81,7 @@ void loop () { while (SerialUSB.available()) { uint8 input = SerialUSB.read(); - SerialUSB.println(input); + SerialUSB.println((char)input); switch(input) { case '\r': |