diff --git a/main_view.html b/main_view.html index c9de4ba..04c6c2c 100644 --- a/main_view.html +++ b/main_view.html @@ -264,8 +264,8 @@ let chargeNow = await getChargeNow(); let chargeFull = await getChargeFull(); let chargeDesign = await getChargeDesign(); - batCapacityNow.innerText = (7.7 * chargeNow / 1000000).toFixed(2).toString() + " Wh (" + (100 * chargeNow / chargeFull).toFixed(0).toString() + "%)"; - batCapacityFull.innerText = (7.7 * chargeFull / 1000000).toFixed(2).toString() + " Wh (" + (100 * chargeFull / chargeDesign).toFixed(0).toString() + "%)"; + batCapacityNow.innerText = (7.7 * chargeNow / 1000000).toFixed(2).toString() + " Wh (" + (100 * chargeNow / chargeFull).toFixed(2).toString() + "%)"; + batCapacityFull.innerText = (7.7 * chargeFull / 1000000).toFixed(2).toString() + " Wh (" + (100 * chargeFull / chargeDesign).toFixed(2).toString() + "%)"; } async function togglePersist() {