Improve logging and set Tesla as default

This commit is contained in:
Daniel 2023-05-09 23:17:18 +03:00
parent 79d8d81cfc
commit ecb657570a
2 changed files with 19 additions and 5 deletions

View file

@ -91,7 +91,20 @@ void update_values_tesla_model_3_battery()
Serial.print(", close allowed: ");
Serial.print(packCtrsClosingAllowed);
Serial.print(", Pyrotest: ");
Serial.print(pyroTestInProgress);
Serial.println(pyroTestInProgress);
Serial.print("Volt: ");
Serial.print(volts);
Serial.print(", Discharge limit: ");
Serial.print(discharge_limit);
Serial.print(", Charge limit: ");
Serial.print(regenerative_limit);
Serial.print(", Max temp: ");
Serial.print(max_temp);
Serial.print(", Min temp: ");
Serial.print(max_temp);
}
}