-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/davepruitt/BetterSerialMo…
- Loading branch information
Showing
1 changed file
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
# BetterSerialMonitor | ||
The serial monitor included in Arduino is limited. This one is a little bit better. | ||
The serial monitor included in Arduino is limited, especially in the fact that you can really only send human-readable ASCII text. Sometimes you need to be able to easily test things, and sometimes those tests require sending bytes over the serial line that are not human-readable ASCII characters. | ||
|
||
This one is a little bit better. It allows you to construct a message out of text or just raw bytes. | ||
|
||
When adding bytes to your message, you can choose to enter a decimal number or a hexidecimal number. Separate each byte by a space. Hexidecimal numbers should be prefixed by "0x". | ||
|
||
Have fun! | ||
|