Giter VIP home page Giter VIP logo

teslams's Introduction

#Tesla Model S REST API

                                   .,:;;rssiS522XX22225Siiisr;;:.
                            ;53A@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@M&r
                           @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
                          @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
                         B@@@@@@@@@@@@@@s;;::,.....  ..,:;;s@@@@@@@@@@@@@@@
                        i@@B@B#@@@@@@@@@.                   @@@@@@@@@@@@@@@#
                       .@@A#@#@@@@@@@@@@@      H@@@@2      @@@@@@@@@@@@@#@@@i
                  :    M@@M@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@M@@@.   :,.
            .2sr;:s:   @@MH#@#@@@@@@#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@2   s:;riXs
             r2X39XS:   ;r.             .....        ...                  .:;  5955225i,
                    :    :i                                               .    .
                    ;:..   ;:,....,,,,,,::,::::::::,,,,,,,,,,,,,,,,......,  .,.,,
                  ...;....  ,r;,,,::::::::::::::::::::::::::::::::,,,::,. ..,..:..,.
              .:Sr.,.,       .,......,,,,,,,,,,,,,,,,,,,,,,,,,,......,.   ....::;rr3;,
              :,h.s:  ,;,.         .................,,,,.............  .,,,;;r   2.ir:.
              :.r,,   :B59i;:..,.                                    ,:;rs222X   . r,:.
              :. :..   ..;rrr:.,:.     ..,,::;;;:,::;;;:,,,.       .,,.:;;;.      ,, :,
              r,                  i2A#BG#@@@@@@@@@@@@@@@@@@#MMGSiS;                 .;:
              s;,,,...          2@@@@@@#@@@@@@@@A&X&H@@@@@@@@@@@@@@@r         ....,,:s;
              Sr;;:::,,,,.... ;@@@#@@@@@@@@@@@@@@@M@@@@@@@@@@#@@@@@@@@. ..,,,,,::::;;i;
              S;:,.,,,,::::,.;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ .::::,,..  .:s:
              sr@HX;;,....,:. M@@@###@@@@@@@@@@@@@@@@@@@@@@@@@@@@#@@@@9 ,,    .,;2B@&;:
              r:@@@@@@@BhSr,   .SH#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@##B2.   :i&@@@@@@@@9;:
              ; X@A;S@@@@@@@;             ...,,,,:::,,,,,..,,..        ,M@@@@@@@Ss@@:;,
              :  ;#M9@@@@@@@@S  i2s;:,..                       ..:;2; :@@@@@@@@@BA5  ;,
              Hhr. .. ..,:;r2s  r@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@   i;,         ;5M;
              @@@@@MH&9X2isssS25iiii522X3933XX225SSiiiii55S55522255522Srrri29AM#@@@@@@,
              H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@.
              r@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
               #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@i
                  ,,:rrsS52222X39h&AHBM###M#########MMMBBBBHAAA&G93XX225Sisr;::,,..

An implementation in Node.js of the client side interface to the Tesla Model S API documented at:

http://docs.timdorr.apiary.io/

This is unofficial documentation of the Tesla Model S REST API used by the iOS and Android apps. It features functionality to monitor and control the Model S remotely. Documentation is provided on the Apiary.io site linked above.

These programs and documentation do not come from Tesla Motors Inc.

Be careful when using these programs as they can lock and unlock your car as well as control various functions relating to the charging system, sun roof, lights, horn, and other subsystems of the car.

Be careful not to send your login and password to anyone other than Tesla or you are giving away the authentication details required to control your car.

Also ensure that you don't overwhelm the Tesla servers with requests. Calling REST APIs at very high frequency can put substantial load on the Tesla servers and might get your IP blocked by Tesla.

#Disclaimer

Use these programs at your own risk. The authors do not guaranteed the proper functioning of these applications. This code attempts to use the same interfaces used by the official Tesla phone apps. However, it is possible that use of this code may cause unexpected damage for which nobody but you are responsible. Use of these functions can change the settings on your car and may have negative consequences such as (but not limited to) unlocking the doors, opening the sun roof, or reducing the available charge in the battery.

#Contributors Marshall Rose (https://github.com/mrose17) Dirk Hohndel (https://github.com/dirkhh) Arthur Blake (https://github.com/arthurblake)

#Installation

To use these programs you must download and install 'node' from http://nodejs.org . Once node is installed, use the included 'npm' utility to download and install the teslams tools and all it's dependent modules

npm install -g teslams

or if you are not logged in as the root (administrator) use:

sudo npm install -g teslams

Alternatively, to run from github sources, clone teslams, go to the main folder and run

npm install

All example programs normally require -u and -p in order to specify the Tesla Motors user name and password to access your Model S. Or, you can instead create a json file in ~/.teslams/config.json and specify them once, in the following format:

{
	"username": "Your teslamotors.com username/email",
	"password": "Your teslamotors.com password"
}

#chargebar.js - monitor your car from your desktop

This application displays the charge state of a Tesla Model S in an ASCII terminal window.

To execute run:

chargebar -u <username> -p <password>

For help run :

chargebar --help

Usage: chargebar.js -u <username> -p <password> 

Options:
  -u, --username  Teslamotors.com login                                                             [required]
  -p, --password  Teslamotors.com password                                                          [required]
  -?, --help      Print usage information

Missing required arguments: u, p

#climatemon.js - monitor the temperature of your car from your desktop

This application displays and controls the climate control system of a Tesla Model S. Colors are white/yellow when climate control is off Interior temperature bar is blue when cooling and red when heating

To execute run:

climatemon -u <username> -p <password>

CTRL-D toggles climate control on/off 
CTRL-C to exit

For help run :

climatemon --help

Usage: climatemon.js -u username -p password 

Options:
  -u, --username  Teslamotors.com login     [required]
  -p, --password  Teslamotors.com password  [required]

Missing required arguments: u, p

#teslamap.js - dude, where's my car?

A sample application which uses the teslams.js library to determine the car location and optionally launch a browser using Google Maps.

To execute run:

teslamap -u <username> -p <password>

For help run :

teslamap --help

Usage: teslamap.js -u <username> -p <password> [--json || --url || --kml] [--map]

Options:
  -u, --username  Teslamotors.com login                                                             [required]
  -p, --password  Teslamotors.com password                                                          [required]
  -j, --json      Display the drive state info                                                      [boolean]
  -m, --map       Open a map in the default browser which displays the current location of the car  [boolean]
  -k, --kml       Print out the location of the car in KML format                                   [boolean]
  -U, --url       Print a URL to google maps on the console                                         [boolean]
  -?, --help      Print usage information

Missing required arguments: u, p

#teslacmd.js - CLI swiss army knife for the REST API

A sample command line application which uses the teslams.js library and takes command line arguments that allow all know REST API functions to be used.

To execute run:

teslacmd -u <username> -p <password>

For help run :

teslacmd --help

Usage: teslacmd.js -u <username> -p <password> -acdFgHimPtvwXZ -A [on|off] -C [start|stop] 
                   -R [std|max|50-90|100] -S [close|vent|comfort|open|0-100] -L [lock|unlock] -T <temp>

Options:
  -u, --username  Teslamotors.com login                                        [required]
  -p, --password  Teslamotors.com password                                     [required]
  -a, --all       Print info for all vehicle on the users account              [boolean]
  -c              Display the charge state                                     [boolean]
  -d, --drive     Display the drive state                                      [boolean]
  -F, --flash     Flash the car headlights                                     [boolean]
  -g, --gui       Display the GUI settings                                     [boolean]
  -H, --honk      Honk the car horn                                            [boolean]
  -i, --info      Print vehicle info                                           [boolean]
  -m, --mobile    Display the mobile state                                     [boolean]
  -P, --port      Open charge port door                                        [boolean]
  -t              Display the climate/temp state                               [boolean]
  -v              Display the vehicle state                                    [boolean]
  -w, --wake      Wake up the car telemetry                                    [boolean]
      -X, --isplugged Check if car is plugged in and continue only if connected    [boolean]
      -Z, --isawake   Check if car is asleep and continue only if awake            [boolean]
  -A, --climate   Turn the air conditioning and heating on/off               
  -C, --charge    Turn the charging on/off                                   
  -R, --range     Charging range mode: "std", "max", or %limit (50-90, or 100 )                       
  -S, --roof      Move the car sunroof to any position or %open
  -L, --lock      Lock/Unlock the car doors                                  
  -T, --temp      Set the car climate control temperature (in Celcius)       
  -?, --help      Print usage information                                    

#streaming.js - Capture and log real-time telemetry while driving

A sample application which uses the TESLA HTTP Long Polling "STREAMING" API to get continuous telemetry from the Tesla Model S. A valid teslamotors.com login and password is required and must be provided on the command line options.

By default the output goes to a file called "streaming.out" which can also be changed with command line options. Each time you run the program you will over-write the output file so copy old log data or specify a different output file before running the application a second time.

Data can be stored in MongoDB using the --db flag. This requires that you separately download, install, and start mongodb on your local host (see http://www.mongodb.org/downloads).

To execute run:

streaming -u <username> -p <password> 

For help run :

streaming --help

Usage: node ./streaming -u <username> -p <password> [--file <filename>] [--db <MongoDB database>] [--values <value_list>] [--silent]

Options:
	  -u, --username  Teslamotors.com login                  [required]
	  -p, --password  Teslamotors.com password               [required]
	  -s, --silent    Silent mode: no output to console      [boolean]
	  -f, --file      Output file.                           [default: "streaming.out"]
	  -d, --db        MongoDB database location
	  -v, --values    List of values to collect              [default: "speed,odometer,soc,elevation,est_heading,est_lat,est_lng,power,shift_state"]
	  -?, --help      Print usage information                                            

#visualize.js - Display historical or realtime streaming data in a browser using Google Maps and provide an energy/speed graph

A sample application that uses streaming data collected in MongoDB by the streaming.js app and makes it visible in a browser. For this app to work you need to be logging the streaming data into a database (see the streaming app above for details). Visualize then takes those data and shows them as a web application. You can connect to the main page for a simple welcome screen that allows you to pick the data range and then select one of the (currently) three supported applications:

  • map: visualize the path and speed of the car over a period of time. This can also do live tracking of the progress of the car. It uses Google Maps and AJAX to update the map (either in real time, or in "fast forward" mode when looking at the past).
  • energy: visualize the energy used and regenerated while driving, charging (voltage and current) and SOC (state of charge) over the time period given.
  • stats: visualize daily driving, charging and Wh/mile.

To execute run:

    node examples/visualize/visualze.js --db <MongoDB database>

For help run:

node examples/visualize/visualize.js --help

    Usage: node visualize.js --db <MongoDB database> [--port <http listen port>] [--silent] [--verbose]

    Options:
          -p, --port     Listen port for the local http server               [default: 8766]
          -d, --db       MongoDB database name                               [required]
          -s, --silent   Silent mode: no output to console                   [boolean]
          -v, --verbose  Verbose mode: more output to console                [boolean]
          -?, --help     Print usage information

Point your browser to http://localhost:8766 to view the various visualizations.

URLs are of the form http://localhost:8766/energy?from=YYYY-MM-DD-HH-MM&to=YYYY-MM-DD-HH-MM

visualize.js now supports authentication. In your ~/.teslams/config.json file simply add a section for visualize like this:

"visualize":
[
	{ "id": 1, "username": "dirk", "password": "secret" },
	{ "id": 2, "username": "bob", "password": "different" }
]

if you don't have a "visualize" property in your config file, authentication is off by default.

#teslams.js - The main library (for javascript programmers)

Contains a library of functions and constants which allow the uses the TESLA "REST" API to get and set values on the Tesla Model S. All functions take an optional callback that will be passed the javascript object returned from the TESLA API.

Functions include:

get_vid()               - get the "id" of the Model S by logging into the Tesla portal
vehicles()              - login to portal and get vehicles list and options data
all()                   - get array of all vehicles (if more than one, we salute you!)
mobile_enabled()        - check is remote/mobile control is on or off
get_charge_state()      - get the full set of charge state information
get_climate_state()     - get the full set of climate state information 
get_drive_state()       - get the full set of drive state information
get_vehicle_state()     - get the full set of vehicle state information 
get_gui_settings()      - get the GUI setting
wake_up()               - wake up the communication with the car (if dormant) 
open_charge_port()      - open the charge port door 
charge_state()          - set the charging state 
charge_range()          - set the range mode 
flash()                 - flash the headlights 
honk()                  - honk the horn 
door_lock()             - lock/unlock the doors 
set_temperature()       - set the climate control temperatures
auto_conditioning()     - turn on/off the climate control (HVAC) system
sun_roof()              - control the sun roof 
stream()                - low-level interface to streaming service

Constants include:

CHARGE_OFF   - turns the charger off
CHARGE_ON    - turns the charger on
RANGE_STD    - set the charge mode to standard range
RANGE_MAX    - set the charge mode to maximum range
LOCK_OFF     - turns the door locks off (unlock)
LOCK_ON      - turns the door locks on (locked)
TEMP_HI      - highest temperature setting on climate control (32C/90F)
TEMP_LO      - the lowest temperature setting on climate control (17C/63F)
CLIMATE_OFF  - turns climate control off
CLIMATE_ON   - turns climate control on
ROOF_CLOSE   - closes the roof
ROOF_VENT    - puts the roof in vent position
ROOF_COMFORT - puts the roof in the 80% open position (for reduced noice)
ROOF_OPEN    - puts the roof in the 100% open position

#example.js - a hello world app that uses the "teslams" node module

A very simple sample application which uses the teslams.js library to call common functions provided in the REST API. A valid teslamotors.com login and password is required and must be inserted into the config.json configuration file.

The example.js application requires that you edit the credentials in the file "config.json" before running the programs or authentication will fail. All other examples get the username and password from the command line options.

{
"username": "[email protected]",
"password": "yourPassword",
}

To execute change into the examples directory to run:

cd ~/node_modules/teslams/examples
node example

#restla.js - a simple REST proxy server

The restla.js proxy server exposes REST API calls in a way that does not expose your Tesla Motors login and password. This proxy is useful as a simple HTML Web interface. Just run 'restla' and then point your browser to http://localhost:8888/help for a full list of the commands supported.

You can also call the restla proxy using curl or any REST client.

I wrote this proxy so I could run it on the internet (behind a firewall for security) and integrate my car with my Pebble Smart Watch and Android Phone. Using Locale (or Tasker) on the Android phone allows me to define rules such as: when I leave my office, start the air conditioning on the car.

#Feedback and Support

For more information, feedback, or community support see the Tesla Motors Club forum at http://www.teslamotorsclub.com/showthread.php/13410-Model-S-REST-API or email [email protected]

teslams's People

Contributors

dirkhh avatar hjespers avatar arthurblake avatar mrose17 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.