No description
Find a file
2021-11-25 09:27:01 -05:00
docs Moved docs 2020-10-28 13:49:21 -04:00
ffpass.nim added newAccessToken() initializer 2021-11-25 09:25:53 -05:00
ffpass.nimble rolled nimble version 2021-11-25 09:27:01 -05:00
README.md Added title for example 2020-10-28 13:55:18 -04:00

ffpass

Api Calls for Ford vehicles equipped with the fordpass app.

Documentation

https://bunkford.github.io/ffpass/docs/ffpass.html

Installation

nimble install https://github.com/bunkford/ffpass/

Example

import ffpass
  
var ford = Vehicle(username:"user@email.com", password:"myPassword", vin:"1FT#############")

if ford.lock():
  echo "Vehicle Locked"
else:
  echo "Failed to lock Vehicle"