FreeDATA/freedata-server/command_beacon.py
2024-04-17 22:49:08 +02:00

15 lines
521 B
Python

from command import TxCommand
class BeaconCommand(TxCommand):
def build_frame(self):
beacon_state = self.state_manager.is_away_from_key
return self.frame_factory.build_beacon(beacon_state)
#def transmit(self, freedata-server):
# super().transmit(freedata-server)
# if self.config['MODEM']['enable_morse_identifier']:
# mycall = f"{self.config['STATION']['mycall']}-{self.config['STATION']['myssid']}"
# freedata-server.transmit_morse("morse", 1, 0, mycall)