├── .gitignore ├── README.md ├── hexy ├── __init__.py ├── comm │ ├── __init__.py │ ├── i2c.py │ └── pwm.py ├── demo │ ├── __init__.py │ ├── demo1.py │ ├── demo2.py │ └── demo3.py └── robot │ ├── __init__.py │ ├── calibrate.py │ ├── core.py │ ├── dancing.py │ ├── hexapod.py │ └── pro.py ├── launcher.sh └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robottwo/hexy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robottwo/hexy/HEAD/README.md -------------------------------------------------------------------------------- /hexy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hexy/comm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hexy/comm/i2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robottwo/hexy/HEAD/hexy/comm/i2c.py -------------------------------------------------------------------------------- /hexy/comm/pwm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robottwo/hexy/HEAD/hexy/comm/pwm.py -------------------------------------------------------------------------------- /hexy/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hexy/demo/demo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robottwo/hexy/HEAD/hexy/demo/demo1.py -------------------------------------------------------------------------------- /hexy/demo/demo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robottwo/hexy/HEAD/hexy/demo/demo2.py -------------------------------------------------------------------------------- /hexy/demo/demo3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robottwo/hexy/HEAD/hexy/demo/demo3.py -------------------------------------------------------------------------------- /hexy/robot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hexy/robot/calibrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robottwo/hexy/HEAD/hexy/robot/calibrate.py -------------------------------------------------------------------------------- /hexy/robot/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robottwo/hexy/HEAD/hexy/robot/core.py -------------------------------------------------------------------------------- /hexy/robot/dancing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robottwo/hexy/HEAD/hexy/robot/dancing.py -------------------------------------------------------------------------------- /hexy/robot/hexapod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robottwo/hexy/HEAD/hexy/robot/hexapod.py -------------------------------------------------------------------------------- /hexy/robot/pro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robottwo/hexy/HEAD/hexy/robot/pro.py -------------------------------------------------------------------------------- /launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robottwo/hexy/HEAD/launcher.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robottwo/hexy/HEAD/setup.py --------------------------------------------------------------------------------