├── .gitignore ├── LICENSE ├── doc └── img │ └── Capture.JPG ├── monitor_ctrl.py ├── readme.md ├── tkui.py ├── vcp.py └── vcp_code.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-osk/monitor_ctrl/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-osk/monitor_ctrl/HEAD/LICENSE -------------------------------------------------------------------------------- /doc/img/Capture.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-osk/monitor_ctrl/HEAD/doc/img/Capture.JPG -------------------------------------------------------------------------------- /monitor_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-osk/monitor_ctrl/HEAD/monitor_ctrl.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-osk/monitor_ctrl/HEAD/readme.md -------------------------------------------------------------------------------- /tkui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-osk/monitor_ctrl/HEAD/tkui.py -------------------------------------------------------------------------------- /vcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-osk/monitor_ctrl/HEAD/vcp.py -------------------------------------------------------------------------------- /vcp_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-osk/monitor_ctrl/HEAD/vcp_code.py --------------------------------------------------------------------------------