
PyTool Modbus Free
Công cụ Modbus với tính năng Python Script.
Thông Tin Ứng Dụng
Mô Tả Ứng Dụng
Phân Tích Và Đánh Giá Ứng Dụng Android: PyTool Modbus Free, Được Phát Triển Bởi Quan Lin. Được Liệt Kê Trong Danh Mục Công Cụ. Phiên Bản Hiện Tại Là 0.3, Được Cập Nhật Vào Ngày 04/07/2021 . Theo Đánh Giá Của Người Dùng Trên Google Play: PyTool Modbus Free. Đạt Được Hơn 605 Cài Đặt. PyTool Modbus Free Hiện Có Đánh Giá 1, Xếp Hạng Trung Bình 5.0 Sao
PyTool Modbus is a great tool for Modbus 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 Modbus tool?
Electrical engineers find it handy to use a hand held device like Android phone or tablet to debug or monitor Modbus communication in the field, factory or lab.
But nearly every Modbus communication system got its own 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 Modbus comes to help.
With the ability to run custom Python script, PyTool Modbus can read and parse any received data, display it in the way you want, and even act accordingly 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 Modbus control interface 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.fc01_read_coils(mbid, addr, num)` to send function code 01 request.
mbid (int): Modbus ID
addr (int): Data Address
num (int): Number of Data
return (list of int): Requested Data List
* Use `app.fc02_read_discrete_inputs(mbid, addr, num)` to send function code 02 request.
mbid (int): Modbus ID
addr (int): Data Address
num (int): Number of Data
return (list of int): Requested Data List
* Use `app.fc03_read_holding_registers(mbid, addr, num)` to send function code 03 request.
mbid (int): Modbus ID
addr (int): Data Address
num (int): Number of Data
return (list of int): Requested Data List
* Use `app.fc04_read_input_registers(mbid, addr, num)` to send function code 04 request.
mbid (int): Modbus ID
addr (int): Data Address
num (int): Number of Data
return (list of int): Requested Data List
* Use `app.fc05_write_single_coil(mbid, addr, val)` to send function code 05 request.
mbid (int): Modbus ID
addr (int): Data Address
val (int): Data Value
return (int): Number of Data (always 1)
* Use `app.fc06_write_single_register(mbid, addr, val)` to send function code 06 request.
mbid (int): Modbus ID
addr (int): Data Address
val (int): Data Value
return (int): Number of Data (always 1)
* Use `app.fc15_write_multiple_coils(mbid, addr, vals)` to send function code 15 request.
mbid (int): Modbus ID
addr (int): Data Address
vals (list of int): Data Value List
return (int): Number of Data
* Use `app.fc16_write_multiple_registers(mbid, addr, vals)` to send function code 16 request.
mbid (int): Modbus ID
addr (int): Data Address
vals (list of int): Data Value List
return (int): Number of Data
* Use `app.msg_out` and `app.msg_in` to check request and response messages.
* Use `app.log_file(text)` to save a log file in storage.
The log file is located here [Storage Directory]/PyToolModbus/log_[UTC Timestamp].txt.
text (str): Text Content
return (str): Full File Path
Chúng Tôi Hiện Đang Cung Cấp Phiên Bản 0.3. Đây Là Phiên Bản Mới Nhất, Được Tối Ưu Hóa Nhất Của Chúng Tôi. Nó Phù Hợp Cho Nhiều Thiết Bị Khác Nhau. Tải Xuống Miễn Phí Apk Trực Tiếp Từ Cửa Hàng Google Play Hoặc Các Phiên Bản Khác Mà Chúng Tôi Lưu Trữ. Hơn Nữa, Bạn Có Thể Tải Xuống Mà Không Cần Đăng Ký Và Không Cần Đăng Nhập.
Chúng Tôi Có Nhiều Thiết Bị Có Sẵn 2000+ Cho Samsung, Xiaomi, Huawei, Oppo, Vivo, Motorola, LG, Google, OnePlus, Sony, Tablet ... Với Rất Nhiều Tùy Chọn, Bạn Dễ Dàng Chọn Các Trò Chơi Hoặc Phần Mềm Phù Hợp Với Thiết Bị Của Bạn.
Nó Có Thể Có Ích Nếu Có Bất Kỳ Hạn Chế Quốc Gia Hoặc Bất Kỳ Hạn Chế Nào Từ Phía Thiết Bị Của Bạn Trên Google App Store.
Những Gì Mới
Version 0.3
Python version for the script is 3.8.
Now the script runs in Python global environment. Existing scripts should still work as before.
`app.version` is added for checking app version.
Python version for the script is 3.8.
Now the script runs in Python global environment. Existing scripts should still work as before.
`app.version` is added for checking app version.