A module to control the Ryanteck Motor Driver Board
Project description
Ryanteck Motor Driver Board
---------------------------
### Cheat Sheet
The rtkmcb Python library allows you to independently control left and right motors, in addition to controlling both at once with a variety of, hopefully, intuitive commands;
#### Left or Right Motor
# Move forwards at speed 0 ( stopped ) to 100
mcb.left_motor.forwards( speed )
# Move backwards at speed 0 ( stopped ) to 100
mcb.left_motor.backwards( speed )
# Set speed of the motor from -100 ( full reverse ) to 100 ( full forward )
mcb.left_motor.speed( speed )
# Stop
mcb.left_motor.stop()
All of these also work for the "right_motor"
#### Both
# Set speed of both motors from -100 to 100
mcb.speed( speed )
# Alternatively, set speed independently
mcb.speed( left_speed, right_speed )
# Turn left
mcb.left( speed )
# Turn right
mcb.right( speed )
# Turn -100 left to 100 right
mcb.turn( speed )
# Stop
mcb.stop()
Change Log
==========
0.0.4-dev
---------
- Fixed bugs introduced by Kanux PWM performance
- Attempt to fix bug in PWM frequency persistence
0.0.1-dev
---------
- Initial development/alpha release
---------------------------
### Cheat Sheet
The rtkmcb Python library allows you to independently control left and right motors, in addition to controlling both at once with a variety of, hopefully, intuitive commands;
#### Left or Right Motor
# Move forwards at speed 0 ( stopped ) to 100
mcb.left_motor.forwards( speed )
# Move backwards at speed 0 ( stopped ) to 100
mcb.left_motor.backwards( speed )
# Set speed of the motor from -100 ( full reverse ) to 100 ( full forward )
mcb.left_motor.speed( speed )
# Stop
mcb.left_motor.stop()
All of these also work for the "right_motor"
#### Both
# Set speed of both motors from -100 to 100
mcb.speed( speed )
# Alternatively, set speed independently
mcb.speed( left_speed, right_speed )
# Turn left
mcb.left( speed )
# Turn right
mcb.right( speed )
# Turn -100 left to 100 right
mcb.turn( speed )
# Stop
mcb.stop()
Change Log
==========
0.0.4-dev
---------
- Fixed bugs introduced by Kanux PWM performance
- Attempt to fix bug in PWM frequency persistence
0.0.1-dev
---------
- Initial development/alpha release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Rtkmcb-0.0.4dev.tar.gz
(2.9 kB
view details)
File details
Details for the file Rtkmcb-0.0.4dev.tar.gz
.
File metadata
- Download URL: Rtkmcb-0.0.4dev.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 45958150015ed6fb0b0774fbf053c7e4573f2117ca24c3cbfef770c8441e7855 |
|
MD5 | 5af623f15501e70a720d657cec15f842 |
|
BLAKE2b-256 | f4f177be91f1eb2fcdc7c43438574e2c15aae7b178bb8a787916b38ec43b31b7 |