Skip to content

Commit

Permalink
New Features:
Browse files Browse the repository at this point in the history
- set preconditioning max (true|false default:true)
- window control (close|vent default:close)

Enhancements:
- set sentry mode: check if parameter is either true or false, if not default is taken
- actuate trunk: check if parameter is either rear or front, if not default is taken
- deactivated some unnecessary text flash actions:
  - set remote seat heater request
  - set remote steering wheel heater request
  - set charge limit
  - set sentry mode
  - actuate trunk
  - set temps
  • Loading branch information
JakobLichterfeld committed Nov 5, 2019
1 parent e728440 commit f128cf6
Show file tree
Hide file tree
Showing 6 changed files with 909 additions and 36 deletions.
26 changes: 24 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,28 @@
### New Features

### Enhancements


### Bug Fixes

## [0.5.0] - 2019-11-05

### New Features

- set preconditioning max (true|false default:true)
- window control (close|vent default:close)

### Enhancements

- set sentry mode: check if parameter is either true or false, if not default is taken
- actuate trunk: check if parameter is either rear or front, if not default is taken
- deactivated some unnecessary text flash actions:
- set remote seat heater request
- set remote steering wheel heater request
- set charge limit
- set sentry mode
- actuate trunk
- set temps

### Bug Fixes

## [0.4.0] - 2019-11-03
Expand Down Expand Up @@ -92,7 +113,8 @@

- Initial release

[unreleased]: https://github.com/JakobLichterfeld/Tesla_API_in_Tasker/compare/v0.4.0...HEAD
[unreleased]: https://github.com/JakobLichterfeld/Tesla_API_in_Tasker/compare/v0.5.0...HEAD
[0.5.0]: https://github.com/JakobLichterfeld/Tesla_API_in_Tasker/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/JakobLichterfeld/Tesla_API_in_Tasker/compare/v0.3.0...v0.4.0
[0.3.0]: https://github.com/JakobLichterfeld/Tesla_API_in_Tasker/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/JakobLichterfeld/Tesla_API_in_Tasker/compare/v0.1.1...v0.2.0
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Token will be refreshed when expires in 10 or less days.
- [x] set temps (driver temp, passenger temp default:20.5)
- [x] auto conditioning start
- [x] auto conditioning stop
- [ ] set preconditioning max
- [x] set preconditioning max (true|false default:true)
- [x] set remote seat heater request (heater=0..5, level=0...3 default:0=driver,3=max)
- [x] set remote steering wheel heater request (true|false default:true)
- [ ] get charge state
Expand All @@ -77,7 +77,7 @@ Token will be refreshed when expires in 10 or less days.
- [x] charge port door close
- [x] charge start (untested)
- [x] charge stop (untested)
- [ ] window control
- [x] window control (close|vent default:close)
- [ ] get drive state
- [ ] ~remote start drive~ (will not be included, because current Tesla account password is needed, which is not stored)
- [ ] upcoming calendar entries
Expand Down Expand Up @@ -115,7 +115,7 @@ This project provides Tasker tasks to access the Tesla API. To use them in your

If parameters are needed the function name gives you a hint about what is needed. For example: "set temps (driver temp, passenger temp default:20.5)" --> this function accepts two parameters, driver temp and passenger temp. If both or one is not given, the default value is taken, in this case 20.5. To call the function with the parameters use the "Perform Task" action and use "Parameter 1" and "Parameter 2" for the parameters you want to set.

You only need to call the function you want, for example set temps (driver temp, passenger temp default:20.5). The Tesla API in Tasker project does take care of the token, wakeup and other preconditions.
You only need to call the function you want, for example set temps (driver temp, passenger temp default:20.5). The Tesla API in Tasker project does take care of the token, wakeup and other preconditions. The task return true if it was successful and false if not.

Do not store your own automation tasks within the Tesla API in Tasker Project in Tasker to prevent data loss when updating Tesla API in Tasker.

Expand Down
Loading

0 comments on commit f128cf6

Please sign in to comment.