diff --git a/charger/go-e.go b/charger/go-e.go index c9ee37157c..39807b605a 100644 --- a/charger/go-e.go +++ b/charger/go-e.go @@ -136,7 +136,7 @@ func (c *GoE) CurrentPower() (float64, error) { func (c *GoE) ChargedEnergy() (float64, error) { var status goeStatusResponse _, err := c.GetJSON(c.apiURL(goeStatus), &status) - energy := float64(status.Dws) / 3.6e6 + energy := float64(status.Dws) / 3.6e5 // Deka-Watt-Seconds to kWh (100.000 == 0,277kWh) return energy, err }