1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 22:13:53 +01:00

defaultfreq fix

This commit is contained in:
NoobishSVK
2024-03-03 22:28:13 +01:00
parent a59626f1df
commit a15e04228c

View File

@@ -163,8 +163,9 @@ function connectToXdrd() {
client.write('x\n');
if(serverConfig.defaultFreq) {
client.write('T' + Math.round(serverConfig.defaultFreq * 1000) +'\n')
} else {
client.write('T87500\n');
}
client.write('T87500\n');
client.write('A0\n');
client.write('G00\n');
client.off('data', authDataHandler);