├── .gitignore ├── .idea ├── bashsupport_project.xml ├── codeStyles │ └── codeStyleConfig.xml ├── encodings.xml ├── misc.xml ├── modules.xml ├── other.xml ├── vagrant.xml ├── vcs.xml ├── webResources.xml └── workspace.xml ├── GUI ├── Loading.ui ├── ParaItem.py ├── PataList.ui ├── SerialPort.ui ├── Ui_Loading.py ├── Ui_PataList.py ├── Ui_SerialPort.py ├── Ui_piano.py ├── __init__.py └── piano.ui ├── LICENSE ├── OpenCV ├── OpenCVUse.py └── __init__.py ├── README.md ├── Widget ├── Piano.py ├── Wave.py ├── __init__.py └── widgetpainter.py ├── help └── 1.png ├── install └── CMD_Pyinstaller.bat ├── macro.json ├── main.pyw ├── res ├── __init__.py ├── icon.jpg ├── icon.png ├── icon_128.ico ├── loading.jpg ├── res.qrc └── res_rc.py ├── res_rc.py ├── setting.json └── src ├── SerialPort.py ├── __init__.py ├── keyMap.py ├── macro.py ├── timer.py └── uart.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/bashsupport_project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/.idea/bashsupport_project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/.idea/other.xml -------------------------------------------------------------------------------- /.idea/vagrant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/.idea/vagrant.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/webResources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/.idea/webResources.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /GUI/Loading.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/GUI/Loading.ui -------------------------------------------------------------------------------- /GUI/ParaItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/GUI/ParaItem.py -------------------------------------------------------------------------------- /GUI/PataList.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/GUI/PataList.ui -------------------------------------------------------------------------------- /GUI/SerialPort.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/GUI/SerialPort.ui -------------------------------------------------------------------------------- /GUI/Ui_Loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/GUI/Ui_Loading.py -------------------------------------------------------------------------------- /GUI/Ui_PataList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/GUI/Ui_PataList.py -------------------------------------------------------------------------------- /GUI/Ui_SerialPort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/GUI/Ui_SerialPort.py -------------------------------------------------------------------------------- /GUI/Ui_piano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/GUI/Ui_piano.py -------------------------------------------------------------------------------- /GUI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GUI/piano.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/GUI/piano.ui -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenCV/OpenCVUse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/OpenCV/OpenCVUse.py -------------------------------------------------------------------------------- /OpenCV/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/README.md -------------------------------------------------------------------------------- /Widget/Piano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/Widget/Piano.py -------------------------------------------------------------------------------- /Widget/Wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/Widget/Wave.py -------------------------------------------------------------------------------- /Widget/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Widget/widgetpainter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/Widget/widgetpainter.py -------------------------------------------------------------------------------- /help/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/help/1.png -------------------------------------------------------------------------------- /install/CMD_Pyinstaller.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/install/CMD_Pyinstaller.bat -------------------------------------------------------------------------------- /macro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/macro.json -------------------------------------------------------------------------------- /main.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/main.pyw -------------------------------------------------------------------------------- /res/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/res/icon.jpg -------------------------------------------------------------------------------- /res/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/res/icon.png -------------------------------------------------------------------------------- /res/icon_128.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/res/icon_128.ico -------------------------------------------------------------------------------- /res/loading.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/res/loading.jpg -------------------------------------------------------------------------------- /res/res.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/res/res.qrc -------------------------------------------------------------------------------- /res/res_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/res/res_rc.py -------------------------------------------------------------------------------- /res_rc.py: -------------------------------------------------------------------------------- 1 | import res.res_rc -------------------------------------------------------------------------------- /setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/setting.json -------------------------------------------------------------------------------- /src/SerialPort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/src/SerialPort.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/keyMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/src/keyMap.py -------------------------------------------------------------------------------- /src/macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/src/macro.py -------------------------------------------------------------------------------- /src/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/src/timer.py -------------------------------------------------------------------------------- /src/uart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IronSublimate/PyQt-multifunctional-uart-helper/HEAD/src/uart.py --------------------------------------------------------------------------------