Skip to main content

Python module for for quickly interface a KY040 rotary encoder with Raspberry Pi.

Project description

Pigpio Encoder

Version: 0.1.0 - First Release

Python module for the KY040 rotary encoder.

This module has been developed for quickly interface a rotary encoder with Raspberry Pi. It's based on the pigpio library (cause it proved to be faster than rpi.GPIO or gpiozero libraries) so you need to install pigpio library and run pigpio daemon before starting your script.

Features

  • Easy to setup callback functions for the Rotary Encoder and the Switch.
  • The Rotary Encoder has customizable min and max values (default 0-100).
  • The Rotary Encoder increase/decrease value is customizable (default 1).
  • The Switch can be activated or not.
  • The Switch can have two different functions for short press or long press.
  • Both Rotary and Switch have a customizable debounce value (default 300ms)

Installation

  • Install the pigpio library (check pigpio documentation for alternative installation method)
  • sudo apt-get update
  • sudo apt-get install pigpio python-pigpio python3-pigpio
  • Install the pigpio_encoder library
  • pip install pigpio_encoder (consider add --user option)
  • start pigpio daemon
  • sudo pigpiod

How to use

  • import the module

    from pigpio_encoder import pigpio_encoder
    
  • create a callback function for the Rotary Encoder.

    You must pass a positional argument to retrieve the counter value.

    def rotary_callback(counter):
        # some action with counter...
    
  • create callbacks functions for the Switch

    If you intend to use the switch you must create at least the "short press" callback. The "long press" callback is necessary if you want to use that feature.

    def sw_short_callback():
        # some action...
    
    def sw_long_callback():
        # some action...
      ```
    
  • create the rotary object

    here you setup the pin number as keyword argument. If you don't pass the switch parameter the switch won't be activated. You must use BCM numbering.

    my_rotary = pigpio_encoder.Rotary(clk=pin, dt=pin, sw=pin)
    
  • setup the rotary encoder

    here you can setup min and max values for the encoder, the increase/decrease value, a debouce value (default 300ms) and the callback function.

    my_rotary.setup_rotary(min=min_value, max=max__value, scale=scale_value, debounce=debounce_value, rotary_callback=rotary_callback)
    
  • setup the switch

    if you have specified the switch pin when creating the encoder object, here you can setup the debounce value, the long press option and the callbacks.

    my_rotary.setup_switch(debounce=debounce_value, long_press=True, sw_short_callback=sw_short_callback, sw_long_callback=sw_long_callback)
    
  • start the listener

    my_rotary.watch()
    

Basic example using default values

from pigpio_encoder import pigpio_encoder

def rotary_callback(counter):
    print("Counter value: ", counter)

def sw_short():
    print("Switch pressed")

my_rotary = pigpio_encoder.Rotary(clk=27, dt=22, sw=17)
my_rotary.setup_rotary(rotary_callback=rotary_callback)
my_rotary.setup_switch(sw_short_callback=sw_short)

my_rotary.watch()

Example using all the Features

from pigpio_encoder import pigpio_encoder

def rotary_callback(counter):
    print("Counter value: ", counter)

def sw_short():
    print("Switch short press")

def sw_long():
    print("Switch long press")

my_rotary = pigpio_encoder.Rotary(clk=27, dt=22, sw=17)
my_rotary.setup_rotary(min=10, max=300, scale=5, debounce=200, rotary_callback=rotary_callback)
my_rotary.setup_switch(debounce=200, long_press=True, sw_short_callback=sw_short, sw_long_callback=sw_long)

my_rotary.watch()

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

pigpio_encoder-0.1.0.tar.gz (3.9 kB view hashes)

Uploaded Source

Built Distribution

pigpio_encoder-0.1.0-py3-none-any.whl (16.2 kB view hashes)

Uploaded Python 3

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