Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
cyr-ius committed Jul 30, 2024
1 parent 9976cc2 commit 1ab2feb
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion example.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,20 @@ async def main() -> None:
logger.info(vehicle.measurements)
logger.info(vehicle.vehicle_health_warnings)
logger.info(vehicle.infos)

# Lock vehicle if spin
# --------------------
# await vehicle.async_set_lock(True)

# Refresh call remote vehicle
# --------------------
# await vehicle.async_refresh_vehicle_data()
await vehicle.async_update()
# await vehicle.async_wakeup()

# Update Audi API
# --------------------
# await vehicle.async_update()

except AudiException as error:
logger.error(error)
finally:
Expand Down

0 comments on commit 1ab2feb

Please sign in to comment.