mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
16 lines
215 B
Python
16 lines
215 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import static
|
|
import modem
|
|
#modem = modem.RF()
|
|
import helpers
|
|
|
|
|
|
|
|
def transmit_cq():
|
|
cq_frame = b'CQCQCQ'
|
|
modem.RF.transmit_signalling(cq_frame)
|
|
pass
|
|
|
|
|