Skip to content

Commit

Permalink
Merge pull request #17 from KvotheBloodless/patch-1
Browse files Browse the repository at this point in the history
Fix solar yield to report Joules rather than w/h
  • Loading branch information
stefanor authored Nov 29, 2024
2 parents 4ddb931 + c640f6b commit e499817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def transform_solar_charger_data(
},
{
"path": f"electrical.solar.{id_}.yieldToday",
"value": data.get_yield_today(),
"value": data.get_yield_today() * 3600, // SignalK expects Joules
},
]

Expand Down

0 comments on commit e499817

Please sign in to comment.