├── .gitignore ├── LICENSE ├── action_climate.js ├── action_doorlock.js ├── action_doorunlock.js ├── action_flashheadlights.js ├── action_soundhorn.js ├── bmwrequest.js ├── config_example.json ├── readme.md ├── server.js ├── startserver.bat ├── tokenmanager.js ├── vehicle.js └── writejson.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyve1981/BMW-ConnectedDrive-JSON-Wrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyve1981/BMW-ConnectedDrive-JSON-Wrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /action_climate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyve1981/BMW-ConnectedDrive-JSON-Wrapper/HEAD/action_climate.js -------------------------------------------------------------------------------- /action_doorlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyve1981/BMW-ConnectedDrive-JSON-Wrapper/HEAD/action_doorlock.js -------------------------------------------------------------------------------- /action_doorunlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyve1981/BMW-ConnectedDrive-JSON-Wrapper/HEAD/action_doorunlock.js -------------------------------------------------------------------------------- /action_flashheadlights.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyve1981/BMW-ConnectedDrive-JSON-Wrapper/HEAD/action_flashheadlights.js -------------------------------------------------------------------------------- /action_soundhorn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyve1981/BMW-ConnectedDrive-JSON-Wrapper/HEAD/action_soundhorn.js -------------------------------------------------------------------------------- /bmwrequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyve1981/BMW-ConnectedDrive-JSON-Wrapper/HEAD/bmwrequest.js -------------------------------------------------------------------------------- /config_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyve1981/BMW-ConnectedDrive-JSON-Wrapper/HEAD/config_example.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyve1981/BMW-ConnectedDrive-JSON-Wrapper/HEAD/readme.md -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyve1981/BMW-ConnectedDrive-JSON-Wrapper/HEAD/server.js -------------------------------------------------------------------------------- /startserver.bat: -------------------------------------------------------------------------------- 1 | node server.js 2 | pause 3 | -------------------------------------------------------------------------------- /tokenmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyve1981/BMW-ConnectedDrive-JSON-Wrapper/HEAD/tokenmanager.js -------------------------------------------------------------------------------- /vehicle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyve1981/BMW-ConnectedDrive-JSON-Wrapper/HEAD/vehicle.js -------------------------------------------------------------------------------- /writejson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lyve1981/BMW-ConnectedDrive-JSON-Wrapper/HEAD/writejson.js --------------------------------------------------------------------------------