No Description

Fabian Peter Hammerle f3b22ec948 added test for method `.get_sync_mode` 3 years ago
.github e5812e9aac method `.set_sync_mode`: added private option `_carrier_sense_threshold_enabled` to test currently unstable receive api 3 years ago
cc1101 e5812e9aac method `.set_sync_mode`: added private option `_carrier_sense_threshold_enabled` to test currently unstable receive api 3 years ago
examples d68319dea3 added method `set_preamble_length_bytes()` 3 years ago
tests dcb7a3a11e added test for method `.get_sync_mode` 3 years ago
.gitignore f6fccfd243 pipeline: added pytest-cov 3 years ago
.pylintrc 2bc397185f setup ci pipeline 3 years ago
CHANGELOG.md 0826529da7 release v2.1.0 3 years ago
COPYING 994a9a5ede added GPLv3+ 3 years ago
Pipfile f6fccfd243 pipeline: added pytest-cov 3 years ago
Pipfile.lock f6fccfd243 pipeline: added pytest-cov 3 years ago
README.md bcce6e48d9 readme: added zenodo doi badge 3 years ago
mypy.ini 991cc935f0 mypy: ignore missing imports 3 years ago
setup.py ae6858d95d setup.py: add python version classifiers after pipeline succeeded 3 years ago

README.md

python-cc1101

CI Pipeline Status Last Release Compatible Python Versions DOI

Python Library to Transmit RF Signals via CC1101 Transceivers

Setup

$ pip3 install --user --upgrade cc1101

On Raspbian / Raspberry Pi OS, dependencies can optionally be installed via:

$ sudo apt-get install --no-install-recommends python3-spidev

Wiring Raspberry Pi

Directly connect the following pins:

C1101 Raspberry Pi
VDD 3.3V (Pin 1 or 17)
SI MOSI (Pin 19)
SO MISO (Pin 21)
CSn CE0 (Pin 24)
SCLK SCLK (Pin 23)
GND Ground

No resistors required. GDO0 & GDO2 are currently unused.

Raspberry Pi GPIO docs: https://www.raspberrypi.org/documentation/usage/gpio/

Usage

See examples.

import cc1101

with cc1101.CC1101() as transceiver:
    transceiver.set_base_frequency_hertz(433.92e6)
    print(transceiver)
    transceiver.transmit(b"\x01\xff\x00 message")

In case a PermissionError gets raised, check the permissions of /dev/spidev*. You'll probably need sudo usermod -a -G spi $USER, followed by a re-login.

CC1101's docs: https://www.ti.com/lit/ds/symlink/cc1101.pdf