Skip to main content

CircuitPython library for infrared transmit and receive.

Project description

Introduction

Documentation Status Discord Build Status Code Style: Ruff

CircuitPython driver for use with IR Receivers.

Examples of products to use this library with:

Dependencies

This driver depends on:

Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle.

Installing from PyPI

On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally from PyPI. To install for current user:

pip3 install adafruit-circuitpython-irremote

To install system-wide (this may be required in some cases):

sudo pip3 install adafruit-circuitpython-irremote

To install in a virtual environment in your current project:

mkdir project-name && cd project-name
python3 -m venv .venv
source .venv/bin/activate
pip3 install adafruit-circuitpython-irremote

Usage Example

# Circuit Playground Express Demo Code
# Adjust the pulseio 'board.PIN' if using something else
import pulseio
import board
import adafruit_irremote

pulsein = pulseio.PulseIn(board.REMOTEIN, maxlen=120, idle_state=True)
decoder = adafruit_irremote.GenericDecode()


while True:
    pulses = decoder.read_pulses(pulsein)
    print("Heard", len(pulses), "Pulses:", pulses)
    try:
        code = decoder.decode_bits(pulses)
        print("Decoded:", code)
    except adafruit_irremote.IRNECRepeatException:  # unusual short code!
        print("NEC repeat!")
    except adafruit_irremote.IRDecodeException as e:     # failed to decode
        print("Failed to decode: ", e.args)

    print("----------------------------")

Documentation

API documentation for this library can be found on Read the Docs.

For information on building library documentation, please check out this guide.

Contributing

Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.

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

adafruit_circuitpython_irremote-5.0.7.tar.gz (26.1 kB view details)

Uploaded Source

Built Distribution

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

File details

Details for the file adafruit_circuitpython_irremote-5.0.7.tar.gz.

File metadata

File hashes

Hashes for adafruit_circuitpython_irremote-5.0.7.tar.gz
Algorithm Hash digest
SHA256 920d6dafb05f82408e9d1129d22ea6b9f943c8073e667cf0bf2f1cc747b6c3f5
MD5 78dafe1892ffcd78c94aa99fdbeb6654
BLAKE2b-256 1cf8917cc232a019f480091484b1e579c39bb9cb972d683f64af96a1a7273b40

See more details on using hashes here.

File details

Details for the file adafruit_circuitpython_irremote-5.0.7-py3-none-any.whl.

File metadata

File hashes

Hashes for adafruit_circuitpython_irremote-5.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 1f085c5e12a3b8c34afc2c95005824b0b2e8bf5609fa9c0ad39d965a36b16172
MD5 9724fffde587d8c9e67d5da21d2ed09a
BLAKE2b-256 c838c7d92b25e3d86fc3d6638e9cb8a3c5cfed6a6753ba0929630b1de6c94c59

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