PyTool USB Serial Free Apk
Apk Infos
Version | 0.8 |
Rating | 5.0/5, based on 1 votes |
Size | 15.3 MB |
Requires Android | Android 5.0+ (Lollipop) |
Author's Notes | USB serial tool with Python script feature. |
About PyTool USB Serial Free APK
Table Of Contents
Description
PyTool USB Serial is a great tool for USB serial developing, debugging and monitoring.It features Python script capability that gives you the greatest flexibility.
For ads free experience, please get the paid version.
Why script capability is desirable for USB serial tool?
Electrical engineers find it handy to use a hand held device like Android phone or tablet to debug or monitor serial communication in the field, factory or lab.
But nearly every communication system got its own protocol or data format.
Searching in a sea of hex data like "02a5b4ca....ff000803" and trying to figure out what is happening is not pleasant at all.
That is where PyTool USB Serial comes to help.
With the ability to run custom Python script, PyTool USB Serial can read and parse any received data, display it in the way you want, and even reply when it is needed.
There are script examples for quick start. Just copy and paste one of them to try them out.
There is also a handy USB serial terminal for general use.
It supports main stream USB serial drivers, including:
FTDI driver
CDC ACM driver
CP210x driver
CH34x driver
PL2303 driver
Script General Guide
====================
* The Python version used in this app is 3.8.
* This app is not designed as script editor although script can be edited in the script field.
The best way is to use your favorite script editor and then copy and paste the script.
* Always use 4 spaces for indentation to avoid weird errors.
* Most of the packages in standard Python library are available to import.
* If while loop is needed, always use `app.running_script` as condition in order to stop the script properly.
* Use `app.version` to get the app version string.
* Use `app.get_output()` to get the script output field as string.
* Use `app.set_output(object)` to display `object` in the script output field as string.
* Use `app.print_text(object)` as a shortcut for `app.set_output(app.get_output() + str(object))` to append text to the script output field.
* Use `app.clear_text()` as a shortcut for `app.set_output("")` to clear the script output field.
* Use `app.send_data(bytearray)` to send `bytearray` through serial port.
* Use `app.receive_data()` to read the data from the buffer as bytearray.
* Use `app.log_file(text)` to save a log file in storage.
The log file is located here [Storage Directory]/PyToolUSBSerial/log_[UTC Timestamp].txt.
text (str): Text Content
return (str): Full File Path
Here is one script example from this app:
####################
# Display received data in hex and echo back.
from binascii import hexlify
from codecs import decode
while(app.running_script):
# Try to fetch any data received in the buffer.
data_rcv = app.receive_data()
if data_rcv:
# Data represented in hex.
data_hex = decode(hexlify(data_rcv), 'utf_8', 'ignore')
# Display received data along with old data.
app.set_output(app.get_output() + data_hex)
# Echo back.
app.send_data(data_rcv)
####################
Latest updates
What's new in version 0.8
Version 0.8Python version for the script is 3.8.
Now the script runs in Python global environment. Existing scripts should still work as before.
Terminal settings are remembered.
`app.version` is added for checking app version.
How to install PyTool USB Serial Free APK on Android phone or tablet?
Download PyTool USB Serial Free APK file from ApkClean, then follow these steps:
Update Phone Settings
- Go to your phone Settings page
- Tap Security or Applications (varies with device)
- Check the Unknown Sources box
- Confirm with OK
Go to Downloads
- Open Downloads on your device by going to My Files or Files
- Tap the APK file you downloaded (com.quanlin.pytoolusbserialfree-v0.8-ApkClean.apk)
- Tap Install when prompted, the APK file you downloaded will be installed on your device.
Older Versions
0.8 (7218) | 15.3 MB |
Questions & Answers
Q: What is an APK File?
A: Just like Windows (PC) systems use an .exe file for installing software, Android does the same. An APK file is the file format used for installing software on the Android operating system.
Q: If I install an APK from this website, will I be able to update the app from the Play Store?
A: Yes, absolutely. The Play Store installs APKs it downloads from Google's servers, and sideloading from a site like ApkClean.net goes through a very similar process, except you're the one performing the downloading and initiating the installation (sideloading).
As soon as the Play Store finds a version of the app newer than the one you've sideloaded, it will commence an update.
Q: Why ApkClean.net can guarantee APK 100% safe?
A: Whenever someone wants to download an APK file from ApkClean.net, we'll check the corresponding APK file on Google Play and allow user download it directly (of course, we'll cache it on our server). If the APK file does not exist on Google Play, we'll search it in our cache.
Q: What are Android App permissions?
A: Apps require access to certain systems within your device. When you install an application, you are notified of all of the permissions required to run that application.
Don't hesitate to contact us if you have any questions or concerns.
(*) is required