Coder Social home page Coder Social logo

teslams's People

Contributors

arthurblake avatar bryant1410 avatar cbrandlehner avatar chriscrewdson avatar dirkhh avatar drewwells avatar erictenharkel avatar hjespers avatar hughescr avatar ianmaddox avatar liko9 avatar mreinstein avatar mrose17 avatar plerecit avatar ve6rah avatar yesthatallen avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

teslams's Issues

Summon

Adding summon. Keep running into this error:
I keep getting "too_far_from_vehicle error".

Add the following to Teslams.js
// summon
function summon( vid, cb) {
console.log("summon");
request( {
method: 'POST',
url: portal + '/vehicles/' + vid + '/command/autopark_request',
gzip: true,
headers: http_header,
lat: yourlat,
lon: yourlong,
action: 'start_reverse'
//homelink_nearby: true
}, function (error, response, body) {
if ((!!error) || (response.statusCode !== 200)) return report(error, response, body, cb);
try {
var data = JSON.parse(body);
if (typeof cb == 'function') return cb( data.response );
else return true;

    } catch (err) {
        return report2('autopark_request', body, cb);
    }
});

}
exports.summon = summon;

timeout connecting to server

keep getting timeout errors with the example, anyone has the issue?

Error parsing response to oauth token request
{ Error: connect ETIMEDOUT xx.xx.xx.xx:443
at Object.exports._errnoException (util.js:1026:11)
at exports._exceptionWithHostPort (util.js:1049:20)
at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1085:14)
code: 'ETIMEDOUT',
errno: 'ETIMEDOUT',
syscall: 'connect',
address: 'xx.xx.xx.xx',
port: 443 }

Cannot call method 'toString' of null

7 Mar 09:16:17 - 0 of 6 REST requests since 1488906969222
Error parsing response to oauth token request
7 Mar 09:16:17 - Error: unable to parse vehicle data response as JSON, login failed. Trying again.
7 Mar 09:16:27 - 1 of 6 REST requests since 1488906969222
Error parsing response to oauth token request
7 Mar 09:16:27 - Error: unable to parse vehicle data response as JSON, login failed. Trying again.
7 Mar 09:16:37 - 2 of 6 REST requests since 1488906969222
7 Mar 09:16:48 - Info: car is in (asleep) state, will check again in 1 minutes
7 Mar 09:17:09 - Info: car is napping or sleeping, skipping auxiliary REST data sample
7 Mar 09:17:48 - 0 of 6 REST requests since 1488907029226
7 Mar 09:17:55 - Info: car is in (asleep) state, will check again in 1 minutes
7 Mar 09:18:09 - Info: car is napping or sleeping, skipping auxiliary REST data sample
7 Mar 09:18:55 - 0 of 6 REST requests since 1488907089232
7 Mar 09:18:56 - Error: expecting an array if vehicle data from Tesla but got this:

TypeError: Cannot call method 'toString' of null
    at Object.exports.log (util.js:492:42)
    at Request._callback (/usr/lib/node_modules/teslams/examples/streaming.js:659:18)
    at Request.self.callback (/usr/lib/node_modules/teslams/node_modules/request/request.js:186:22)
    at Request.emit (events.js:98:17)
    at Request.<anonymous> (/usr/lib/node_modules/teslams/node_modules/request/request.js:1081:10)
    at Request.emit (events.js:95:17)
    at IncomingMessage.<anonymous> (/usr/lib/node_modules/teslams/node_modules/request/request.js:1001:12)
    at IncomingMessage.g (events.js:180:16)
    at IncomingMessage.emit (events.js:117:20)
    at _stream_readable.js:944:16
[1]    20900 exit 8     streaming --db tesla -z

Data no longer displaying on energy charts

Some of the data isn't displaying anymore on the energy charts. All the maps from an earlier day work but not for the day after.

The project was created on digital ocean, streaming.js is streaming to a local mongo instance, and the node project is being hosted on the same server.

The stream process gets me these logs:

12 Apr 16:45:59 - 2 of 1 REST requests since 1460493919719
12 Apr 16:45:59 - Warn: throttling due to too many REST API requests

Perhaps streaming.js may be getting throttled then getting stuck in a kind of loop, since if you restart streaming.js it seems to collect the data again.

No 3 phase support

This is more of a European issue but in your energy and charging graph it assumes that all power is from single phase when it could be from 3 phase which would make the power reading 3X what is currently being shown.

image

Error logging in while using streaming and teslacmd

@:~$ streaming

Teslamotors.com logon information loaded from /home//.teslams/config.json
14 Nov 04:33:23 - timestamp,speed,odometer,soc,elevation,est_heading,est_lat,est_lng,power,shift_state,range,est_range,heading
Error parsing response to oauth token request
14 Nov 04:33:24 - [Error: login failed
err: TypeError: Cannot read property 'charAt' of undefined
body: undefined]
14 Nov 04:33:24 - Info: car is in (undefined) state, calling /charge_state to reveal the tokens
14 Nov 04:33:25 - Warn: waking up with charge_state request failed.
Waiting 30 secs and then reinitializing...

and

@:~$ teslacmd
Teslamotors.com logon information loaded from /home//.teslams/config.json
Error parsing response to oauth token request
[Error: login failed]

open to a possible API refactor?

what I'd like to change:

  • expose a getToken(email, password, callbackFn)
  • don't store the token internally in the module. pass it in with each call. (e.g, get_charge_state( vid, token, cb )
  • remove the JSONBig module dependency. Rather than fixing the id field, use the id_s field, which tesla already includes for vehicles. One less dependency.
  • support promises (any function calls that omit a callback would return a promise)

if any/all of these changes would be welcome, I'd be happy to send some PRs.

One thing to note, this would be a significant API change. We'd have to mark this as 2.x to respect semver.

@hjespers thoughts?

Merge Restla and Visualize

It seems clunky to have Restla run a web server on one port, and Visualize run on a different port, would it not make more sense to have Restla as a menu button within visualize?

working since move to tesla.com ?

I think they changed from teslamotors to just tesla.com recently, I suspect API needs updating too...... is this project currently working.... I was getting an error trying to do login..

Error: login failed
at /usr/local/lib/node_modules/teslams/examples/teslacmd.js:229:12
at report (/usr/local/lib/node_modules/teslams/teslams.js:24:13)
at Request._callback (/usr/local/lib/node_modules/teslams/teslams.js:65:101)
at Request.self.callback (/usr/local/lib/node_modules/teslams/node_modules/request/request.js:187:22)
at emitTwo (events.js:106:13)
at Request.emit (events.js:191:7)
at Request. (/usr/local/lib/node_modules/teslams/node_modules/request/request.js:1044:10)
at emitOne (events.js:96:13)
at Request.emit (events.js:188:7)
at IncomingMessage. (/usr/local/lib/node_modules/teslams/node_modules/request/request.js:965:12)

uh, this looks shady

// move along, nothing to see here. 
eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('q n=["\\f\\f\\m\\b\\e\\i\\o\\j\\p\\l\\g\\g\\g\\o\\c\\e\\b\\j\\9\\9\\p\\c\\b\\f\\k\\l\\p\\f\\p\\a\\o\\g\\j\\d\\m\\i\\o\\d\\i\\9\\c\\l\\k\\e\\d\\9\\o\\d\\l\\l\\h\\d\\i\\c\\g\\p\\j\\g\\p\\m\\h\\g\\a\\e\\m\\m\\l\\l\\h\\o\\l\\f\\e\\b\\g\\a\\f\\b\\e\\h\\m\\9\\f\\9\\h\\h\\c\\a\\f\\f\\a\\9\\j\\j\\m\\9\\j\\d\\a\\k\\e\\e\\c\\b\\b\\k\\b\\i\\p\\h\\g\\k\\i\\d\\g\\i\\g\\i\\h\\e\\l\\g\\9\\9\\o\\9\\f\\c\\9\\m\\9\\p\\m\\j\\b\\c\\f\\a\\p\\m\\o\\f\\e\\j\\9\\l\\h\\d\\i\\l\\k\\d\\g\\c\\9\\d\\c\\k\\a\\e","\\a\\e\\j\\d\\b\\o\\k\\a\\g\\9\\k\\h\\h\\b\\b\\p\\i\\d\\9\\h\\i\\d\\l\\a\\e\\c\\9\\9\\d\\d\\c\\k\\c\\f\\d\\j\\k\\d\\a\\m\\b\\b\\e\\m\\g\\f\\l\\b\\9\\e\\k\\j\\c\\9\\f\\f\\c\\l\\k\\e\\b\\c\\b\\h\\a\\a\\9\\a\\c\\k\\f\\a\\9\\g\\d\\b\\l\\d\\j\\f\\e\\f\\h\\c\\m\\m\\c\\c\\k\\9\\a\\b\\e\\c\\k\\9\\h\\e\\d\\i\\i\\m\\c\\a\\o\\b\\h\\h\\p\\o\\a\\a\\c\\b\\i\\a\\b\\a\\j\\g\\o\\p\\o\\i\\9\\k\\9\\i\\g\\h\\g\\f\\e\\l\\9\\e\\p\\d\\d\\g\\i\\9\\m\\p\\h\\p\\b\\h\\o\\g\\p\\m\\a\\j\\p\\i\\g\\e\\k\\f","\\c\\a\\F\\B\\o\\j\\9\\B\\b\\e\\b","\\j\\d\\9\\j\\k\\f\\9\\b\\9\\i\\o\\l\\j\\f\\d\\d\\d\\e\\o\\l\\k\\l\\9\\b\\9\\j\\9\\i\\k\\f\\9\\j\\o\\i","\\b\\v\\a\\c\\s\\a\\I\\a\\b\\C\\D\\w\\a\\v","\\w\\a\\G","\\x\\s\\m\\h","\\x\\D\\g\\c\\s\\a","\\m\\C\\H\\c\\J"];q A=n[0];q u=n[1];q t=z[n[4]](n[2],n[3]);q y=t[n[7]](A,n[5],n[6]);y+=t[n[8]](n[6]);q r=z[n[4]](n[2],n[3]);q E=r[n[7]](u,n[5],n[6]);E+=r[n[8]](n[6]);',46,46,'|||||||||x36|x65|x63|x61|x34|x62|x33|x64|x38|x31|x35|x37|x30|x66|_0x57b2|x32|x39|var|d2|x74|d1|s2|x72|x68|x75|cid|crypto|s1|x2D|x69|x70|csec|x73|x78|x6E|x44|x6C'.split('|'),0,{}))

Getting 404 with example code

I'm evaluating this library and the examples work so far when I provide username and password on the commandline. But starting from example.js I don't have any success with my own 'code'

#!/usr/bin/env node
var teslams = require('teslams');
var util = require('util');

// Config
var config = {
    creds: {
        username: '[email protected]',
        password: 'mypassword'
    }
};

// Generic callback function to print the return value
function pr( stuff ) {
    console.log( util.inspect( stuff ) );
}

console.log(config.creds);

teslams.get_vid( { email: config.creds.email, password: config.creds.password }, function ( vid ) {
    if (vid == undefined) {
        console.log("Error: Undefined vehicle id");
    } else {
        teslams.get_charge_state( vid, pr );
    }
  }
);

Results in:

{ username: '[email protected]', password: 'mypassword' }
[Error: 404: 404]
[Finished in 1.7s]

Any advice?

(Password and username changed for this report of course)

node error

I just downloaded and updated to the lastest version and am receiving the following error when I run any commands from terminal. My pull from 7/28 worked fine. This is on Mac OSX. Any ideas? I didn't install MongoDB yet; so perhaps this is my problem?

Thanks

KMBA:teslams-master K$ chargebar
env: node\r: No such file or directory

Installation from the sudo command is below:

[email protected] install /usr/local/lib/node_modules/teslams/node_modules/mongodb/node_modules/kerberos
(node-gyp rebuild 2> builderror.log) || (exit 0)

[email protected] install /usr/local/lib/node_modules/teslams/node_modules/mongodb/node_modules/bson
(node-gyp rebuild 2> builderror.log) || (exit 0)

xcode-select: Error: No Xcode is selected. Use xcode-select -switch , or see the xcode-select manpage (man xcode-select) for further information.

npm http 304 https://registry.npmjs.org/charm/0.1.2
xcode-select: Error: No Xcode is selected. Use xcode-select -switch , or see the xcode-select manpage (man xcode-select) for further information.

/usr/local/bin/teslacmd -> /usr/local/lib/node_modules/teslams/examples/teslacmd.js
/usr/local/bin/teslamap -> /usr/local/lib/node_modules/teslams/examples/teslamap.js
/usr/local/bin/streaming -> /usr/local/lib/node_modules/teslams/examples/streaming.js
/usr/local/bin/chargebar -> /usr/local/lib/node_modules/teslams/examples/chargebar.js
/usr/local/bin/climatemon -> /usr/local/lib/node_modules/teslams/examples/climatemon.js
/usr/local/bin/visualize -> /usr/local/lib/node_modules/teslams/examples/visualize.js
npm WARN package.json [email protected] No repository field.
npm WARN package.json [email protected] No repository field.
npm WARN package.json [email protected] No repository field.
[email protected] /usr/local/lib/node_modules/teslams
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected])
└── [email protected] ([email protected], [email protected])

Status of restla.js

I was planning to use restla.js for some integrations but then it seemed to be deprecated (removed from readme and procfile), but know I see updates to it again. Whats the status, is it supposed to work? Would you mind putting the usage options back into the readme?

visualize, "Rated range (miles)" is off in SOC and Rated range graph

In version 0.7.5, in visualize, in the Energy page, the SOC and Rated range graph,
I notice that the "Rated range (miles)", the (blue line) is a little high.
I measured that it appears to reflect the Rated Range in km, not miles. I expect this is just a conversion calc missing.

image

Forgive me if this was covered elsewhere.. I looked at many issues before opening a new one.

First argument in callback should represent an error

When I call a function from the API (like teslams.get_charge_state()) with a callback, this callback is executed with an error or a result as the first argument. Normally, in other APIs, a null is returned as the first argument when no error happened. This way you can always call the API like this:

teslams.get_charge_state(vid, function (error, result) {
  if (error)
    // handle error
  else
    // continue
});

What do you think?

Thanks for the great API though!!

stream call typo?

The stream call code uses the password for auth, but that doesn't work -- you need the token from /vehicles? Or at least that's how it works for me...

HTTP error code 429

hi - i've been using the api for about 10 weeks just fine.

then this afternoon, i started getting this:

429: You have been blocked for making too many requests!

any ideas as to what the threshold should be so i can adjust my client accordingly?

thanks!

  • marshall

Visualize energy graph regen vs charging

In visualize, on the energy tab, the top graph is labelled as energy and speed, but it doesn't differentiate between regen and charging, labels all charging as regen. Considering that charging is covered by the next graph down, it would be much nicer if only regen were included here.

Login error

When using teslacmd -u x -p y (x and y are not the credentials I really used)
I get the error message:

Error parsing response to oauth token request
Error: login `failed`

I can login on the tesla.com site so username and password are correct.

add stand alone login() method to teslams.js which fetches token

Some people would prefer to manage their own login tokens rather than request a new one each time their apps start.

I should add into teslams.js an explicit login() method that sets the global variable for the token and does nothing else. This is done now, only when you call vehicles() or all()

Modify teslacmd.js to have an option to print out the token.

Modify config.js to check the ~/.teslams.json file for a token that the user has saved instead of their username and password.

Modify vehicles() and all() to check if the global token variable is already set and if so, skip the login part of the code. May enhance this later to check for expired tokens.

exports.token never utilized

Looking at teslams.js it seems to me as if the Authorization token should be accessible from outside the library and is therefore defined as an export. This is very useful to me since it allows caching and therefore avoiding an additional request to the TESLA API when only polling for example /charge_state.

However:

    var portal = 'https://owner-api.teslamotors.com/api/1';
    exports.portal = portal;
    var owner_api = 'https://owner-api.teslamotors.com';
    exports.portal = owner_api;
    var token = '';
    exports.token = token;

Unfortunately I think the '=' copies by value and not by reference. So when accessing the token from outside it is always an empty string.

I would submit a pull request that fixes the issue but wanted to make sure it is not intended behavior.

Make Visualize Multi-User Multi-Car capable

Have an option that multiple users can look at their cars. Non-Geek people would like the functionality but won't set up a complete server for them. Having one server collecting multiple cars and only allowing the people to see their own data would be really cool.

Typo in visualize.js (only a problem for Performance Plus)

On line 254, the variable 'optionsString' is mistyped and must be corrected to 'optionString' (2 times).

This part of the error message:
ReferenceError: optionsString is not defined
at /usr/local/lib/node_modules/teslams/examples/visualize/visualize.js:254:22

(sorry i closed the same Issue by mistake and had to reopen it again).

Charge status does not work

Getting the charge/battery status does not work for me. It seems that the encoding is not handled correctly.

alex@b52:~/teslams$ examples/teslacmd.js -c
[Error: expecting JSON response to charge_state request]

I altered the code to display the response. This is the contents of 'body' (in teslams.js) at the time the error message is generated:

_�H@@@@@@ctt�n�0P�W�Q"0��r��W+YN��%cS?؝���[�a&�ɑ�����6�̒��vĚw�N��R��y�Qa�[�e+F\�Qz�L˚_��(�o�Qj�ԏjF��5O�Ay�Q�V�^.B9�ث����ODm�[�m�6�
{�!����_b�y�*c^�Tm�D���4�U;{+�5�CMNo��Y0�9�҈���w��b&��x[pL����?��WQ�R�kG�����E�'�b����=HB��VUp8���➥����I�AW�T�L�lUz����A8r��[S �N�
�RVw���h�s��ʏ��@@@��C@q��3�D@@]

Typo in visualize.js (only a problem for Performance Plus)

On line 254, the variable 'optionsString' is mistyped and must be corrected to 'optionString' (2 times).

This part of the error message:
ReferenceError: optionsString is not defined
at /usr/local/lib/node_modules/teslams/examples/visualize/visualize.js:254:22

Streaming suddenly fails on startup

Teslamotors.com logon information loaded from /home/marcus/.teslams/config.json
29 Oct 07:42:24 - timestamp,speed,odometer,soc,elevation,est_heading,est_lat,est_lng,power,shift_state,range,est_range,heading
events.js:85
throw er; // Unhandled 'error' event
^
Error: ENOSPC, write
at Error (native)

Streaming

Sorry to bug you right away with another issue.

Streaming does not work for me, I get "WARN: HTTP 401: Unauthorized - token has likely expired, reinitializing". I've saved my u/p in config.json, it works for the other scripts.

Not sure if it has anything to do with this problem (probably not), but this script can not be executed from any directory. If I start it from ~/teslams/ it does not find config.json. The other scripts do.

Visualize.js is not compatible with express 4.0

visualize always throws this error:

root@vps1:~# visualize -d teslams -u -v
Teslamotors.com logon information loaded from /root/.teslams/config.json
Using MongoDB URI: mongodb://127.0.0.1:27017/teslams

/usr/lib/node_modules/teslams/examples/visualize/visualize.js:161
app.configure(function() {
^
TypeError: Object function (req, res, next) {
app.handle(req, res, next);
} has no method 'configure'
at Object. (/usr/lib/node_modules/teslams/examples/visualize/visualize.js:161:5)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:902:3
root@vps1:~# npm

I researched it a bit and found:

https://github.com/visionmedia/express/wiki/Migrating-from-3.x-to-4.x

"Removed
app.configure()

This method is no longer available. If you wish to configure different routes based on environment, use an if statement or alternative module."

Client Secret publicly available

@hjespers: it seems that the client secret is the same for everyone, and is trivial to extract from here.

The problems of having a publicly available client secret are stated here (although you probably know of them already):
http://tools.ietf.org/html/rfc6819#section-4.1.1

I suggest loading a client secret from a local .json file (example here, Tim Dorr uses environment variables), and supply the users of your library with a sample-file stating how to generate the secret (or simply in the readme).

Have a nice day :)

for comment: charge_state automation

i am in the process of developing a set of rules to generate notifications based on the charging state and charger-proximity of the model s. here are the conditions i've come up with, along with their predicates.

could i ask you to review and comment?

also, i'm not sure what values to use in order to calculate the "charging-done-within-5m"

CONDITIONS

  1. stopped-for-at-least-5m, at-night, at-home-charger, needs-charge-at-home AND not-plugged-in
  2. stopped-for-at-least-5m, at-super-charger, needs-charge-at-travel AND not-plugged-in
  3. needs-charge AND plugged-in-not-charging
  4. at-super-charger, now-charging AND charging-done-within-5m
  5. stopped-for-at-least-5m AND not-locked
  6. stopped-for-at-least-5m and temperature-not-right

PREDICATES

  • stopped-for-at-least-5m: drive_state.speed has been NULL for at least 5 minutes
  • at-night: solar time at (drive_state.latitude, drive_state.longtitude) is "night"
  • at-home-charger: distance((home.latitude, home.longitude), (drive_state.latitude, drive_state.longitude)) < 1km
  • needs-charge-at-home: at-home-charger AND and charge_state.battery_level < charge_state.charge_limit_soc_std
  • not-plugged-in: charge_state.charging_state == 'Disconnected'
  • at-super-charger: distance((nearest.latitude, nearest.longitude), (drive_state.latitude, drive_state.longitude)) < 1km
  • needs-charge-at-travel: at-home-charger AND and charge_state.battery_level < charge_state.charge_limit_soc
  • needs-charge: needs-charge-at-home OR needs-charge-at-travel
  • plugged-in-not-charging: charge_state.charging_state = 'Stopped'
  • now-charging: charge_state.charging_state == 'Charging'
  • charging-done-within-5m: ???
  • temperature-not-right: temperature-too-hot OR temperature-too-cold
  • temperature-too-hot: climate_state.driver_temp_setting .lt (climate_state.inside_temp + 5)
  • temperature-too-cold: climate_state.driver_temp_setting .gt (climate_state.inside_temp - 5)

allow users to pass the config.json location by env var/argument

The examples with -p on the command line make me really wary. This is leaking passwords in people's history and process table. Any other user on the system can see the password in this case.

Enable the ability to specify the config.json location as env var and cli argument so multiple config.json can be used and a custom location can be used. This is nice for setups where $HOME may not be ideal.

Use inside AWS Lambda

Hi - wondering if anyone has tried using inside of AWS Lambda. I had it working about 2 months ago, and updated library to get the support for passing a token instead of user / pwd, and now my Lambda call is timing out. I tried increasing memory to 256 MB and also timeout to 30 seconds, didn't help.

Its very weird b/c I can use the http lib "request" that teslams uses internally and make a call to google fine, but if I try to call through a teslams.get_vehicle or other call it hangs. Also tried using request to call https://owner-api.teslamotors.com/api/1 directly and that hung as well.

Some conflict or filter AWS has or Tesla blocking calls from AWS Lambda somehow? Would love to know if anyone else has any luck. Thanks.

streaming.js sometimes returns two lines at a time instead of one

this only happens when driving. The last value of the data includes another entire line of data. This can screw up some apps. I have had to include a dud value that I don't use to avoid having this problem. Need to check how we split the data and throw away extraneous lines if present.

Does not work anymore

I try to use the cmd teslacmd -a and got

Teslamotors.com logon information loaded from ~/.teslams/config.json
[Error: expecting an array from Tesla Motors cloud service]

I pretty sure the login and password are correct. It looks like Tesla has changed the API. .Any help would be greatly appreciated.

Open and Close Frunk and Trunk

Would be awsome to be able to open the frunk and trunk from my apple watch.
Can you update the telsams to support Trunk and Frunk?

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.