├── LICENSE ├── README.md ├── README_fr.md └── USB ├── App ├── DocumentObserver.py ├── PySerial.py ├── PySerialState.py ├── Script.py ├── TinyG2.py ├── TinyG2Machine.py ├── UsbCommand.py ├── UsbPool.py ├── UsbPoolMachine.py └── __init__.py ├── Examples ├── Griffin Relief.ncc ├── HomeSwitchRearPanelEngrave.ncc ├── SupportLogo.ncc └── boomerangv4.ncc ├── Gui ├── Icons │ ├── Usb-Pause.xpm │ ├── Usb-Pool.xpm │ ├── Usb-PySerial.xpm │ ├── Usb-Refresh.xpm │ ├── Usb-Terminal.xpm │ └── Usb-Upload.xpm ├── PySerialGui.py ├── PySerialModel.py ├── PySerialPanel.py ├── Script.py ├── TerminalDock.py ├── TinyG2Gui.py ├── TinyG2Model.py ├── TinyG2Panel.py ├── UsbPoolGui.py ├── UsbPoolModel.py ├── UsbPoolPanel.py └── __init__.py ├── Init.py ├── InitGui.py └── serial ├── __init__.py ├── aio.py ├── rfc2217.py ├── rs485.py ├── serialcli.py ├── serialjava.py ├── serialposix.py ├── serialutil.py ├── serialwin32.py ├── threaded └── __init__.py ├── tools ├── __init__.py ├── hexlify_codec.py ├── list_ports.py ├── list_ports_common.py ├── list_ports_linux.py ├── list_ports_osx.py ├── list_ports_posix.py ├── list_ports_windows.py └── miniterm.py ├── urlhandler ├── __init__.py ├── protocol_alt.py ├── protocol_hwgrep.py ├── protocol_loop.py ├── protocol_rfc2217.py ├── protocol_socket.py └── protocol_spy.py └── win32.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/README.md -------------------------------------------------------------------------------- /README_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/README_fr.md -------------------------------------------------------------------------------- /USB/App/DocumentObserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/App/DocumentObserver.py -------------------------------------------------------------------------------- /USB/App/PySerial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/App/PySerial.py -------------------------------------------------------------------------------- /USB/App/PySerialState.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/App/PySerialState.py -------------------------------------------------------------------------------- /USB/App/Script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/App/Script.py -------------------------------------------------------------------------------- /USB/App/TinyG2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/App/TinyG2.py -------------------------------------------------------------------------------- /USB/App/TinyG2Machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/App/TinyG2Machine.py -------------------------------------------------------------------------------- /USB/App/UsbCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/App/UsbCommand.py -------------------------------------------------------------------------------- /USB/App/UsbPool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/App/UsbPool.py -------------------------------------------------------------------------------- /USB/App/UsbPoolMachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/App/UsbPoolMachine.py -------------------------------------------------------------------------------- /USB/App/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /USB/Examples/Griffin Relief.ncc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Examples/Griffin Relief.ncc -------------------------------------------------------------------------------- /USB/Examples/HomeSwitchRearPanelEngrave.ncc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Examples/HomeSwitchRearPanelEngrave.ncc -------------------------------------------------------------------------------- /USB/Examples/SupportLogo.ncc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Examples/SupportLogo.ncc -------------------------------------------------------------------------------- /USB/Examples/boomerangv4.ncc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Examples/boomerangv4.ncc -------------------------------------------------------------------------------- /USB/Gui/Icons/Usb-Pause.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Gui/Icons/Usb-Pause.xpm -------------------------------------------------------------------------------- /USB/Gui/Icons/Usb-Pool.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Gui/Icons/Usb-Pool.xpm -------------------------------------------------------------------------------- /USB/Gui/Icons/Usb-PySerial.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Gui/Icons/Usb-PySerial.xpm -------------------------------------------------------------------------------- /USB/Gui/Icons/Usb-Refresh.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Gui/Icons/Usb-Refresh.xpm -------------------------------------------------------------------------------- /USB/Gui/Icons/Usb-Terminal.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Gui/Icons/Usb-Terminal.xpm -------------------------------------------------------------------------------- /USB/Gui/Icons/Usb-Upload.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Gui/Icons/Usb-Upload.xpm -------------------------------------------------------------------------------- /USB/Gui/PySerialGui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Gui/PySerialGui.py -------------------------------------------------------------------------------- /USB/Gui/PySerialModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Gui/PySerialModel.py -------------------------------------------------------------------------------- /USB/Gui/PySerialPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Gui/PySerialPanel.py -------------------------------------------------------------------------------- /USB/Gui/Script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Gui/Script.py -------------------------------------------------------------------------------- /USB/Gui/TerminalDock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Gui/TerminalDock.py -------------------------------------------------------------------------------- /USB/Gui/TinyG2Gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Gui/TinyG2Gui.py -------------------------------------------------------------------------------- /USB/Gui/TinyG2Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Gui/TinyG2Model.py -------------------------------------------------------------------------------- /USB/Gui/TinyG2Panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Gui/TinyG2Panel.py -------------------------------------------------------------------------------- /USB/Gui/UsbPoolGui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Gui/UsbPoolGui.py -------------------------------------------------------------------------------- /USB/Gui/UsbPoolModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Gui/UsbPoolModel.py -------------------------------------------------------------------------------- /USB/Gui/UsbPoolPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Gui/UsbPoolPanel.py -------------------------------------------------------------------------------- /USB/Gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /USB/Init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/Init.py -------------------------------------------------------------------------------- /USB/InitGui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/InitGui.py -------------------------------------------------------------------------------- /USB/serial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/__init__.py -------------------------------------------------------------------------------- /USB/serial/aio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/aio.py -------------------------------------------------------------------------------- /USB/serial/rfc2217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/rfc2217.py -------------------------------------------------------------------------------- /USB/serial/rs485.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/rs485.py -------------------------------------------------------------------------------- /USB/serial/serialcli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/serialcli.py -------------------------------------------------------------------------------- /USB/serial/serialjava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/serialjava.py -------------------------------------------------------------------------------- /USB/serial/serialposix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/serialposix.py -------------------------------------------------------------------------------- /USB/serial/serialutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/serialutil.py -------------------------------------------------------------------------------- /USB/serial/serialwin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/serialwin32.py -------------------------------------------------------------------------------- /USB/serial/threaded/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/threaded/__init__.py -------------------------------------------------------------------------------- /USB/serial/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /USB/serial/tools/hexlify_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/tools/hexlify_codec.py -------------------------------------------------------------------------------- /USB/serial/tools/list_ports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/tools/list_ports.py -------------------------------------------------------------------------------- /USB/serial/tools/list_ports_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/tools/list_ports_common.py -------------------------------------------------------------------------------- /USB/serial/tools/list_ports_linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/tools/list_ports_linux.py -------------------------------------------------------------------------------- /USB/serial/tools/list_ports_osx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/tools/list_ports_osx.py -------------------------------------------------------------------------------- /USB/serial/tools/list_ports_posix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/tools/list_ports_posix.py -------------------------------------------------------------------------------- /USB/serial/tools/list_ports_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/tools/list_ports_windows.py -------------------------------------------------------------------------------- /USB/serial/tools/miniterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/tools/miniterm.py -------------------------------------------------------------------------------- /USB/serial/urlhandler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /USB/serial/urlhandler/protocol_alt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/urlhandler/protocol_alt.py -------------------------------------------------------------------------------- /USB/serial/urlhandler/protocol_hwgrep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/urlhandler/protocol_hwgrep.py -------------------------------------------------------------------------------- /USB/serial/urlhandler/protocol_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/urlhandler/protocol_loop.py -------------------------------------------------------------------------------- /USB/serial/urlhandler/protocol_rfc2217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/urlhandler/protocol_rfc2217.py -------------------------------------------------------------------------------- /USB/serial/urlhandler/protocol_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/urlhandler/protocol_socket.py -------------------------------------------------------------------------------- /USB/serial/urlhandler/protocol_spy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/urlhandler/protocol_spy.py -------------------------------------------------------------------------------- /USB/serial/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prrvchr/USBTerminal/HEAD/USB/serial/win32.py --------------------------------------------------------------------------------