mirror of
https://github.com/dalathegreat/Battery-Emulator.git
synced 2025-10-03 17:59:27 +02:00
Tesla: Fix temperature scaling USB print
This commit is contained in:
parent
56be5f8349
commit
9fd8ec90c4
1 changed files with 2 additions and 2 deletions
|
@ -364,9 +364,9 @@ void update_values_tesla_model_3_battery() { //This function maps all the value
|
|||
Serial.print(", ");
|
||||
print_int_with_units(" Max charge power: ", max_target_charge_power, "W");
|
||||
Serial.println("");
|
||||
print_int_with_units(" Max temperature: ", temperature_max, "C");
|
||||
print_int_with_units(" Max temperature: ", (temperature_max * 0.1), "°C");
|
||||
Serial.print(", ");
|
||||
print_int_with_units(" Min temperature: ", temperature_min, "C");
|
||||
print_int_with_units(" Min temperature: ", (temperature_min * 0.1), "°C");
|
||||
Serial.println("");
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue