Fix telemetry path (for now).

pull/75/head
Matt 2021-09-12 19:30:17 -05:00
rodzic fd6395df16
commit 594da346ed
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -500,7 +500,8 @@ String prepareCallsign(const String& callsign){
String telemetryEquations = String(":") + Tcall + ":EQNS.0,5.1,3000,0,10,0,0,10,0,0,28,3000,0,10,0";
String telemetryData = String("T#MIC") + String(b_volt) + ","+ String(b_in_c) + ","+ String(b_out_c) + ","+ String(ac_volt) + ","+ String(ac_c) + ",00000000";
String telemetryBase = "";
telemetryBase += Tcall + ">APLO01" + ":";
telemetryBase += Tcall + ">APLO01," + relay_path + ":";
Serial.print(telemetryBase);
sendToTNC(telemetryBase + telemetryParamsNames);
sendToTNC(telemetryBase + telemetryUnitNames);
sendToTNC(telemetryBase + telemetryEquations);