Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasddn committed Dec 11, 2024
2 parents e9ff25f + f4a96c8 commit 184c1ce
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 14 deletions.
13 changes: 1 addition & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ Now check out the features section for details on what you'll get!
- Multiple cars
- Multiple accounts
- Translations (but [need help](#need-help) on this 🙏)
- [More to come...](#road-ahead)

### Entities

Expand Down Expand Up @@ -129,17 +128,7 @@ Fill in the OTP to complete the process.
- Test if you have multiple Volvos on the **same account**.
- Test if you have multiple Volvos across **different accounts**.
- Test with other Volvo models (non-BEV).

<a name="road-ahead"></a>

## 🛣️ The _road_ ahead

Some features popping up in the _rearview mirror_, in no particular order, are:

- Unit conversions (Volvo API reports in km and liters only)
- Smart data refresh interval
- Timestamp last refresh sensor
- Attribute which holds timestamp of when the value has been last retrieved from the vehicle
- Users that use imperial system.

## 🥤 Powered by snacks

Expand Down
2 changes: 1 addition & 1 deletion custom_components/volvo_cars/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"requirements": [
"pydantic>=1.10.18,<2.0"
],
"version": "0.2.1"
"version": "0.2.2"
}
2 changes: 1 addition & 1 deletion custom_components/volvo_cars/volvo/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class VolvoCarsVehicle(BaseModel):
gearbox: str
fuel_type: str = Field(..., alias="fuelType")
external_colour: str = Field(..., alias="externalColour")
battery_capacity_kwh: float = Field(..., alias="batteryCapacityKWH")
battery_capacity_kwh: float | None = Field(None, alias="batteryCapacityKWH")
images: VolvoCarsImages
description: VolvoCarsModel = Field(..., alias="descriptions")

Expand Down

0 comments on commit 184c1ce

Please sign in to comment.