mirror of
https://github.com/dalathegreat/Battery-Emulator.git
synced 2025-10-03 17:59:27 +02:00
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
parent
979c5a0829
commit
556b2b3e5a
1 changed files with 6 additions and 4 deletions
|
@ -44,10 +44,12 @@ class KiaHyundai64HtmlRenderer : public BatteryHtmlRenderer {
|
|||
content +=
|
||||
"<h4>Normal charged energy amount: " + String(data.accumulated_normal_charging_energy_kWh) + " kWh</h4>";
|
||||
content += "<h4>Fastcharged energy amount: " + String(data.accumulated_fastcharging_energy_kWh) + " kWh</h4>";
|
||||
content += "<h4>Total amount charged energy: " + String(data.cumulative_energy_charged_kWh / 10.0 ) + " kWh</h4>";
|
||||
content += "<h4>Total amount discharged energy: " + String(data.cumulative_energy_discharged_kWh / 10.0 ) + " kWh</h4>";
|
||||
content += "<h4>Cumulative charge current: " + String(data.cumulative_charge_current_ah / 10.0 ) + " Ah</h4>";
|
||||
content += "<h4>Cumulative discharge current: " + String(data.cumulative_discharge_current_ah / 10.0) + " Ah</h4>";
|
||||
content += "<h4>Total amount charged energy: " + String(data.cumulative_energy_charged_kWh / 10.0) + " kWh</h4>";
|
||||
content +=
|
||||
"<h4>Total amount discharged energy: " + String(data.cumulative_energy_discharged_kWh / 10.0) + " kWh</h4>";
|
||||
content += "<h4>Cumulative charge current: " + String(data.cumulative_charge_current_ah / 10.0) + " Ah</h4>";
|
||||
content +=
|
||||
"<h4>Cumulative discharge current: " + String(data.cumulative_discharge_current_ah / 10.0) + " Ah</h4>";
|
||||
};
|
||||
|
||||
print_hyundai(*kia_datalayer);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue