-
-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to send control characters? #5
Comments
I added a new button so you can enter a number and send character. |
Actually I am looking in to how to make a more advanced version of the terminal with full compatibility. |
@mmiscool interesting... have you played with https://googlechromelabs.github.io/serial-terminal/? |
I did play with that chrome labs demo but it never worked as I expected it to work. |
My I suggest accepting those numbers in Hex? Hexadecimal. perhaps by preceding them with '\x' e.g. \xaa would be the same as 170 (because 170 in decimal is AA in hex). Also, \t or \r might be nice to support as tab and return. So then you need \ as . But that would make the tool so very very valuable for debugging binary serial communications. Oh... you would also need an option to display the return values which are binary the same way. |
It'd be very helpful to be able to send control characters (CTRL+C, BACKSPACE, etc...).
I couldn't readily find a way to send raw bytes via the input box.
EDIT: (for those also wondering)
Undoubtedly my naiveness, but since I couldn't escape bytes within the input box, I just added a couple buttons for control characters I commonly use with CircuitPython boards.
add buttons:
add function
The text was updated successfully, but these errors were encountered: