GithubHelp home page GithubHelp logo

pyqik_controller's Introduction

pyqik_controller

Python Library Pololu Qik Motor Controller

Table of contest

Genral Info

This project is a Python library for Pololu motor controller Qik it was uses pololu_crc7.so library as dependencies

Technologies & Libraries

Setup

Download

git clone https://github.com/ArturK-85/pyqik_controller.git

Build from source:

python setup.py build

And install:

python setup.py install

Documentation

All functions uses cyclic redundancy check

  • MotorController(port_name, baud_rate)
    • error_check() Prints error name
    • get_conf() Prints configuration parameters list
    • set_conf(id, pwm, err, timeout) Setting parameters : #id 0-255, #pwm 0 or 1, #err 0 or 1, #timeout 0-255
    • motor_coast(motor_number) Setting motor coast: #motor_number 0 or 1
    • motor_run(motor_number, direction, speed) #direction 'Fwd' or 'Rev', #speed: 0 - 255
    • motor_stop() #stops motor

Usage

Simple exapmple program:

import time
import pyqik_controller.pyqik_controller as pyqik

controller = pyqik.MotorController('/dev/ttyUSB0', 38400)   # 38400kbps is the max speed for this controller

controller.get_conf()                                      # getting configuration of controller              

controller.motor_run(0, 'Fwd', 0x40)                         # run motor forward in half speed
time.sleep(1)
controller.motor_stop()                                      # stop motor

controller.port_close()                                    # port close

License

Distributed under the MIT License. See LICENSE for more information.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.