KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
robodyno
★ 12
Open GitHub ↗
Robodyno Python Library.
Download README (.md)
Explore Similar Repositories
home.page
:
contains course data files, assignment notebooks, miscellaneous, readings, and syllabus
install.sh
:
Palera1n basic install script
Brain-BioAmp-Arduino-Firmware
:
Firmware for Brain-BioAmp hardware from Upside Down Labs
RelationalDatabasesViaOOP
:
Simple OOP library for using relational database and having fun
MoE4DST
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
robodyno
?
Download (.md)
# robodyno [](https://pypi.org/project/robodyno/) [](https://www.python.org/downloads/) [](https://pypi.org/project/robodyno/#files) [](https://pypi.org/project/robodyno/) [](https://github.com/psf/black) ## Installation ```bash pip install robodyno ``` ## Usage ### Command Line Interface ```bash robodyno --help ``` ### Python API ```python import time from robodyno.interfaces import CanBus from robodyno.components import Motor can_bus = CanBus() motor = Motor(can_bus) motor.enable() motor.set_pos(6.28) time.sleep(1) print(motor.get_pos()) motor.disable() ``` For more examples, please refer to `examples` directory. For more documentation, please refer to [docs](http://101.42.250.169/latest/).