Skip to content

theriverman/VolvoOnCall

Repository files navigation

VolvoOnCall

Library and CLI application written in Go to interact with the Volvo Cars (Volvo On Call) services.

This project was inspired by molobrakos/volvooncall, and it aims to maintain a certain level of compatibility with it both API and configuration wise.

For more about the CLI application, see cli/README.md.

Get the Library

go get github.com/theriverman/VolvoOnCall

Getting Started

import (
  "fmt"
  vocdriver "github.com/theriverman/VolvoOnCall"
)

client, err := vocdriver.NewClient("your-volvo-on-call-username", "your password")
if err != nil {
  fmt.Printf("%v\n", err)
}

account, err := client.CustomerAccount.GetAccount()
if err != nil {
  fmt.Printf("%v\n", err)
}

vehicles, err := account.GetVehicles()
if err != nil {
  fmt.Printf("%v\n", err)
}

fmt.Logf("My Vehicles:\n")
for _, vehicle := range vehicles {
  if err = vehicle.RetrieveHyperlinks(); err != nil {
    fmt.Printf("%v\n", err)
    continue
  }
  fmt.Printf("  * %s (%s)\n", vehicle.VehicleID, vehicle.Attributes.RegistrationNumber)
  fmt.Printf("    - IsHeaterSupported: %t\n", vehicle.IsHeaterSupported())
  status, err := vehicle.BlinkLights(nil)
  if err != nil {
    fmt.Panicf("%v", err)
  }
  if err = client.Vehicles.EvaluateServiceStatusAuto(status); err != nil {
    fmt.Panicf("%v", err)
  }
}

About

A library and a CLI application to interact with the Volvo Cars (On Call) service API

Resources

License

Stars

Watchers

Forks

Packages

No packages published