1234567891011121314151617181920212223242526272829303132333435 |
- import logging
- import time
- import cc1101
- logging.basicConfig(level=logging.INFO)
- with cc1101.CC1101(lock_spi_device=True) as transceiver:
- print("defaults:", transceiver)
- transceiver.set_base_frequency_hertz(433.5e6)
- transceiver.set_symbol_rate_baud(600)
- # transceiver.set_sync_mode(cc1101.SyncMode.NO_PREAMBLE_AND_SYNC_WORD)
- # transceiver.set_preamble_length_bytes(2)
- # transceiver.set_sync_word(b"\x12\x34")
- # transceiver.disable_checksum()
- transceiver.set_output_power((0, 0xC0)) # OOK modulation: (off, on)
- print(transceiver)
- print("state", transceiver.get_marc_state().name)
- print("base frequency", transceiver.get_base_frequency_hertz(), "Hz")
- print("symbol rate", transceiver.get_symbol_rate_baud(), "Baud")
- print("modulation format", transceiver.get_modulation_format().name)
- sync_mode = transceiver.get_sync_mode()
- print("sync mode", sync_mode)
- if sync_mode != cc1101.SyncMode.NO_PREAMBLE_AND_SYNC_WORD:
- print("preamble length", transceiver.get_preamble_length_bytes(), "bytes")
- print("sync word", transceiver.get_sync_word())
- print("output power settings (patable)", transceiver.get_output_power())
- print("\nstarting transmission")
- transceiver.transmit(b"\xff\xaa\x00 message")
- time.sleep(1.0)
- transceiver.transmit(bytes([0, 0b10101010, 0xFF]))
- for i in range(16):
- time.sleep(1.0)
- transceiver.transmit(bytes([i, i, i]))
|