This commit is contained in:
Matthew Kennedy 2020-10-31 17:01:33 -07:00
parent 453a4c4337
commit 76859f851d
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ int main() {
}*/
while(1) {
size_t writeCount = chsnprintf(strBuffer, 200, "%.4f\t%.2f\n", GetNernstDc() * 1000, GetSensorInternalResistance());
size_t writeCount = chsnprintf(strBuffer, 200, "%.4f\t%.2f\t%.2f\n", GetSensorInternalResistance(), nernstVolt, GetPumpNominalCurrent());
uartStartSend(&UARTD1, writeCount, strBuffer);
chThdSleepMilliseconds(5);