Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bluelink: use charge port open as indicator for connected status #7150

Merged
merged 1 commit into from Apr 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion vehicle/bluelink/provider.go
Expand Up @@ -113,7 +113,7 @@ func (v *Provider) Status() (api.ChargeStatus, error) {
status := api.StatusNone
if err == nil {
status = api.StatusA
if res.EvStatus.BatteryPlugin > 0 {
if res.EvStatus.BatteryPlugin > 0 || res.EvStatus.ChargePortDoorOpenStatus > 0 {
status = api.StatusB
}
if res.EvStatus.BatteryCharge {
Expand Down
5 changes: 3 additions & 2 deletions vehicle/bluelink/types.go
Expand Up @@ -38,8 +38,9 @@ type VehicleStatus struct {
Value, Unit int
}
}
DrvDistance []DrivingDistance
ReservChargeInfos ReservChargeInfo
ChargePortDoorOpenStatus int
DrvDistance []DrivingDistance
ReservChargeInfos ReservChargeInfo
}
Vehicles []Vehicle
}
Expand Down