Skip to main content

Python interface to the CC1101 Linux device driver

Project description

cc1101-python

This project provides an interface to the CC1101 Linux Driver to allow receiving and transmitting packets from Python.

Setup

pip3 install cc1101-python

Command Line

python3 -m cc1101 {tx,rx,config,reset}

config

Retreive the current configuration from the driver.

rx and tx print the human-readable configuration options.

rx_raw and tx_raw print the register values of the CC1101 for the current RX and TX configs.

dev_raw prints the current register values of the hardware.

reset

Clear the RX and TX configs and reset the radio hardware.

tx/rx

Transmits or receives packets.

Common Options

device

The path to a /dev/cc1101.x.x interface provided by the driver.

modulation

The modulation scheme to use. Valid values are OOK, FSK_2, FSK_4, GFSK, MSK.

frequency

The frequency to receive/transmit on. Valid values are 300-348, 387-464 and 779-928 MHz.

baud_rate

The data rate in kBaud to receive/transmit packets. Valid values are within the range 0.6-500 and depend on modulation:

Modulation Baud Rate
OOK / GFSK 0.6 - 250
2FSK 0.6 - 500
4FSK 0.6 - 300
MSK 26 - 500

sync_word

The Sync Word to use, specified as a two or four byte hexadecimal value (e.g 0f0f). If four bytes are used, the upper and lower two bytes must be the same (e.g 0f0f0f0f)

In RX, the device searches for the specified sync word to being reception.

In TX, the sync word is preprended to each packet.

--deviation

When using an FSK modulation, sets the deviation in kHz either side of the provided frequency to use for modulation.

rx Options

packet_length

The number of bytes the radio will receive once RX is triggered, either via sync word or carrier sense threshold.

--bandwidth

Sets the receive bandwidth in kHz. Valid values are

58,67,81,101,116,135,162,203,232,270,325,406,464,541,650,812

--carrier-sense

Sets the carrier sense threshold in dB. When a sync word is provided, RX only begins when the carrier sense is above the threshold and the sync word has been received.

Valid values are:

17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48

tx Options

frequency

Frequency to transmit on. In TX mode, frequencies are by default restricted to 315/433/868/915 MHz +/- 1MHz, which allows specifying TX Power as one of the dBm values listed in TI DN013. This checking can be disabled by using the --raw flag.

tx_power

The power in dBm to use for transmission. Values must match one of the values in the appropriate frequency table of TI DN013.

packet

A sequence of bytes in hexadecimal form to transmit using the CC1101.

--raw

In --raw mode, tx_power is provided as a single byte in hexadecimal, which will be directly set in the CC1101's PATABLE. Any valid frequency value can be used.

RX Example

python3 -m cc1101 rx /dev/cc1101.0.0 OOK 433 1 0f0f 64

TX Example

python3 -m cc1101 tx /dev/cc1101.0.0 OOK 433 1 1.4 0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f

Python Library

These examples show how to integrate the CC1101 into Python programs.

Receive

from time import sleep
from binascii import hexlify

from cc1101.config import RXConfig, Modulation
from cc1101 import CC1101

rx_config = RXConfig(434, Modulation.OOK, 1, 0x0000, 64)
radio = CC1101("/dev/cc1101.0.0", rx_config)

while True:
    packets = radio.receive()

    for packet in packets:
        print(f"Received - {hexlify(packet)}")

    sleep(0.1)

Transmit

from binascii import unhexlify

from cc1101.config import TXConfig, Modulation
from cc1101 import CC1101

tx_config = TXConfig.from_ism(434, Modulation.OOK, 1, 1.4)
radio = CC1101("/dev/cc1101.0.0")

radio.transmit(tx_config, unhexlify("0f0f0f0f0f0f0f0f0f0f0f"))

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

cc1101-python-1.0.0.tar.gz (14.3 kB view hashes)

Uploaded Source

Built Distribution

cc1101_python-1.0.0-py3-none-any.whl (20.3 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