Skip to main content

A Python driver for the L9110 motor controller over I2C

Project description

Describe

A Python package to control the L9110 motor driver over I2C using smbus2.

Installation

  1. Create virtual environment: python3 -m venv your_env
  2. Activate virtual environment: source your_env/bin/activate
  3. install package: pip install MKE-M17

⚠️ Warning

  • Check hardware connection: Ensure your device is correctly connected to the I2C bus (SDA, SCL, VCC, GND) before using the package.
  • Verify I2C address: Use the command i2cdetect -y 1 on a Raspberry Pi to check the I2C address of the L9110 device.
  • Resource management: The package supports context manager (with statement) to automatically close the I2C bus after use, preventing resource leaks. It is recommended to use this syntax whenever possible.

How to use MKE_M17 lib

1. Initialize the Driver

Create an L9110 instance to control your device.

Parameters:

  • i2c_address (int): The I2C address of the L9110 chip. Default is 0x40.
  • i2c_bus_number (int): The number of the I2C bus to use. Default is 1.

Example:

⚠️ Warning: Run in virtual environment (your_env/bin/python3.11)

from MKE_M17 import L9110

# Default settings
l9110 = L9110()

# Custom address and bus
l9110 = L9110(address=0x42, bus_number=1)

# With context manager (recommended)
with L9110(address=0x42) as l9110:
    pass

2. Control Servos

Use control_servo() to set servo angles.

Args:

  • servo_id (int): 1 (S1) or 2 (S2).
  • degree (int): Angle in degrees (default: 0-180).

Returns:

True on success, False on failure.

Example:

l9110.control_servo(1, 150)  # Servo 1 to 150°
l9110.control_servo(2, 90)   # Servo 2 to 90°

3. Control DC Motors

Use control_motor() to set motor speed and direction.

Args:

  • motor_id (int): 0 (MA) or 1 (MB).
  • percent (float): Speed (0-100).
  • direction (int): 0 (CW) or 1 (CCW).

Returns:

True on success, False on failure.

Example:

l9110.control_motor(0, 50, 0)  # Motor A, 50%, clockwise
l9110.control_motor(1, 70, 1)  # Motor B, 70%, counterclockwise

4. Change I2C Address

Update the device’s I2C address with set_address().

Args:

  • new_address (byte): New address (0x40-0x44).

Returns:

True on success, False on failure.

Example:

l9110.set_address(0x42)
# Output: "Set address successful. New address: 0x42"

5. Customize Servo Range

Set new range degree.

using set_range_degree(min_degree, max_degree) to set new range degree for servo motor

Args:

  • min_degree(int): (0-359).
  • max_degree(int): (1-360).

Example:

l9110.set_range_degree(0, 270)

Set new range pulse.

using set_range_pulse(min_pulse, max_pulse) to set new range degree for servo motor

Args:

  • min_pulse(int): (0-2814).
  • max_pulse(int): (1-2815).

Example:

l9110.set_range_pulse(600, 2400)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mke_m17-0.1.0.tar.gz (4.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mke_m17-0.1.0-py3-none-any.whl (5.3 kB view details)

Uploaded Python 3

File details

Details for the file mke_m17-0.1.0.tar.gz.

File metadata

  • Download URL: mke_m17-0.1.0.tar.gz
  • Upload date:
  • Size: 4.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for mke_m17-0.1.0.tar.gz
Algorithm Hash digest
SHA256 48fde48a72e0d782891bd6e81a9b478f8924ec6f0fbe272291667093da863ba8
MD5 35adbc8f192ccc3e8dd88844fc4347a3
BLAKE2b-256 38a363045242a25c3c6e931f25a7753b9153bfdff40c674c0a84789b962196f9

See more details on using hashes here.

File details

Details for the file mke_m17-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: mke_m17-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 5.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for mke_m17-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5b0dbe8ffdad9859ba6c88586028d60c2197e549a4d207065579449d64a371b6
MD5 a47b7e17a03a3313129b63930ccd886e
BLAKE2b-256 fabf848d3654bfa3e4df8ddf4e1f8a8b0da0795200531ca4d33ea8a797443cce

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page