mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
36 lines
578 B
Python
36 lines
578 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import structlog
|
||
|
|
||
|
hamlib_version = 0
|
||
|
|
||
|
class radio:
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
|
||
|
|
||
|
def open_rig(self, **kwargs):
|
||
|
return True
|
||
|
|
||
|
def get_frequency(self):
|
||
|
return None
|
||
|
|
||
|
def get_mode(self):
|
||
|
return None
|
||
|
|
||
|
def get_bandwith(self):
|
||
|
return None
|
||
|
|
||
|
def set_mode(self, mode):
|
||
|
return None
|
||
|
|
||
|
def get_ptt(self):
|
||
|
return None
|
||
|
|
||
|
def set_ptt(self, state):
|
||
|
return state
|
||
|
|
||
|
def close_rig(self):
|
||
|
return
|
||
|
|