-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update readme to fix consistency in wording
- Loading branch information
1 parent
38766e8
commit d78ad78
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,13 +12,13 @@ You must first go on [Google Maps][1] or [LatLong][2] and get the Longitude and | |
### Installation | ||
Install [Go][3] and [Git][4] if you don't have them. Go can be tricky with paths. Type `$ go env` and then `$ cd` into directory in `$GOROOT/src`. Clone this repository from within the `src` directory. | ||
|
||
`$ git clone git@github.com:morrisonbrett/TeslaCommand.git` | ||
`$ git clone https://github.com/morrisonbrett/TeslaCommand.git` | ||
|
||
`$ cd TeslaCommand` | ||
|
||
Below is an example run. The long/lat is for the Tesla Hawthorne, CA Supercharger (replace with your own values): | ||
|
||
`$ go run TeslaCommand.go -checkInterval=5 -fromAddress="from@anywhere.com" -geoFenceLatitude=33.921063 -geoFenceLongitude=-118.33015434 -mailServer="smtp.gmail.com" -mailServerLogin="[email protected]" -mailServerPassword="thepassword" -mailServerPort=587 -radius=200 -teslaLoginEmail="user@anywhere.com" -teslaLoginPassword="the-teslamotors-password" -toAddress="to@anywhere.com" -vehicleIndex=0` | ||
`$ go run TeslaCommand.go -checkInterval=5 -fromAddress="user@gmail.com" -geoFenceLatitude=33.921063 -geoFenceLongitude=-118.33015434 -mailServer="smtp.gmail.com" -mailServerLogin="[email protected]" -mailServerPassword="the-gmail-password" -mailServerPort=587 -radius=200 -teslaLoginEmail="user@gmail.com" -teslaLoginPassword="the-teslamotors-password" -toAddress="user@gmail.com" -vehicleIndex=0` | ||
|
||
Please see the "Issues" link for a list of "TO DO" items. It's a work in progress... :-) | ||
|
||
|