Arnaud Taffanel
Published

Sniffing Crazyflie’s Radio with HackRF Blue

Playing with HackRF, a software defined radio, by sniffing the Crazyradio/Crazyflie radio communication.

IntermediateProtip1 hour5,390
Sniffing Crazyflie’s Radio with HackRF Blue

Things used in this project

Story

Read more

Code

Code snippet #1

Plain text
from crazyradio import Crazyradio
import time

cr = Crazyradio()
cr.set_channel(26)
cr.set_data_rate(cr.DR_1MPS)

while True:
    cr.send_packet((0,1,2,3,4))
    time.sleep(0.1)

Credits

Arnaud Taffanel

Arnaud Taffanel

2 projects • 14 followers

Comments