introduced transmit is writing

This commit is contained in:
DJ2LS 2023-02-12 18:28:10 +01:00
parent 6195538fff
commit 8003a3c395

View file

@ -689,6 +689,15 @@ exports.sendFEC = function (mode, payload) {
writeTncCommand(command);
};
// SEND FEC IS WRITING
exports.sendFecIsWriting = function (mycallsign) {
command =
'{"type" : "fec", "command" : "transmit_is_writing", "mycallsign" : "' +
mycallsign +
'"}';
writeTncCommand(command);
};
// RECORD AUDIO
exports.record_audio = function () {
command = '{"type" : "set", "command" : "record_audio"}';