├── .gitignore ├── README.md ├── docs ├── ZLAC8015D RS485通信例程Version 1.00-20201019.pdf └── ZLAC8015D_eng.odt ├── examples ├── test_position_control.py ├── test_read.py ├── test_speed_control.py └── test_speed_control_sineWave.py ├── images ├── motor1.jpg ├── motor2.jpg └── wiring_diagram.png ├── setup.py └── zlac8015d ├── ZLAC8015D.py └── __init__.py /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | zlac8015d.egg-info/ 4 | __pycache__/ 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasheeddo/ZLAC8015D_python/HEAD/README.md -------------------------------------------------------------------------------- /docs/ZLAC8015D RS485通信例程Version 1.00-20201019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasheeddo/ZLAC8015D_python/HEAD/docs/ZLAC8015D RS485通信例程Version 1.00-20201019.pdf -------------------------------------------------------------------------------- /docs/ZLAC8015D_eng.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasheeddo/ZLAC8015D_python/HEAD/docs/ZLAC8015D_eng.odt -------------------------------------------------------------------------------- /examples/test_position_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasheeddo/ZLAC8015D_python/HEAD/examples/test_position_control.py -------------------------------------------------------------------------------- /examples/test_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasheeddo/ZLAC8015D_python/HEAD/examples/test_read.py -------------------------------------------------------------------------------- /examples/test_speed_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasheeddo/ZLAC8015D_python/HEAD/examples/test_speed_control.py -------------------------------------------------------------------------------- /examples/test_speed_control_sineWave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasheeddo/ZLAC8015D_python/HEAD/examples/test_speed_control_sineWave.py -------------------------------------------------------------------------------- /images/motor1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasheeddo/ZLAC8015D_python/HEAD/images/motor1.jpg -------------------------------------------------------------------------------- /images/motor2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasheeddo/ZLAC8015D_python/HEAD/images/motor2.jpg -------------------------------------------------------------------------------- /images/wiring_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasheeddo/ZLAC8015D_python/HEAD/images/wiring_diagram.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasheeddo/ZLAC8015D_python/HEAD/setup.py -------------------------------------------------------------------------------- /zlac8015d/ZLAC8015D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rasheeddo/ZLAC8015D_python/HEAD/zlac8015d/ZLAC8015D.py -------------------------------------------------------------------------------- /zlac8015d/__init__.py: -------------------------------------------------------------------------------- 1 | from zlac8015d import ZLAC8015D --------------------------------------------------------------------------------