Skip to main content

Use rc servos with PWM in micropython in a tidy way

Project description

pypi version shield pypi downloads per month shield

Description

A micropython library to control rc servos in a tidy way.

This uses hardware PWM as an efficient way to generate the ouput signal. But therefore servos need to be connected to pins with PWM functionallity.

The servos can be calibrated using 2 points (min / max position). The default values should work for most servos, but won't set the servo to the exact position, as these values are different for each servo model.

Examples

Move servo

import time
from servo import Servo
my_servo = Servo(pin_id=28)
my_servo.write(30)
time.sleep(2.0)
my_servo.write(60)
time.sleep(2.0)
my_servo.write(90)

API

class Servo(pin_id,min_us=544.0,max_us=2400.0,min_deg=0.0,max_deg=180.0,freq=50)

  • pin_id: id of the pin connected to the servo
  • min_us: minimal pulse width (calibration point 1 / there is no clipping if you try to set the servo to a lower value)
  • max_us: maximal pulse width (calibration point 2 / there is no clipping if you try to set the servo to a higher value)
  • min_deg: minimal position in degrees (calibration point 1 / there is no clipping if you try to set the servo to a lower value)
  • max_deg: maximal position in degrees (calibration point 2 / there is no clipping if you try to set the servo to a higher value)

write(deg)

  • move the servo to the given position
  • deg: Position in degrees

read()

  • returns the position last set in degrees

write_rad(rad)

  • move the servo to the given position
  • rad: Position in radians

read_rad()

  • returns the position last set in radians

write_us(us)

  • set the pulse width for the servo
  • us: Pulse width in us

read_us()

  • returns the last set puls width

off()

  • disables the output

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

micropython-servo-1.0.1.tar.gz (3.2 kB view details)

Uploaded Source

Built Distribution

micropython_servo-1.0.1-py3-none-any.whl (4.1 kB view details)

Uploaded Python 3

File details

Details for the file micropython-servo-1.0.1.tar.gz.

File metadata

  • Download URL: micropython-servo-1.0.1.tar.gz
  • Upload date:
  • Size: 3.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.8

File hashes

Hashes for micropython-servo-1.0.1.tar.gz
Algorithm Hash digest
SHA256 3c39c0abcde5223867105915568e86deb513df62b5064db1cad0a6cf9b822894
MD5 2eba07bb1bbfb9c3e723b80b7081e97d
BLAKE2b-256 514b990de6fb0f1ac34022d8a953cbd88f80e1b9c665090a125076e86aeb69cf

See more details on using hashes here.

Provenance

File details

Details for the file micropython_servo-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for micropython_servo-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 10dae185da7ae27dc6c8e149b3f1fb254665391d08db5fb5f70fb00dfbf4fbc8
MD5 b95b6873dc432497fe71531aa51af614
BLAKE2b-256 34fa00697659cf16510963fe3d4ff28ad6896eaff73251928bc47e4e02518bf2

See more details on using hashes here.

Provenance

Supported by

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