├── .gitignore ├── LICENSE ├── README ├── canexplorer ├── can.html ├── canloader.js ├── dygraph-combined.js └── loadnpy.js ├── explorer ├── .gitignore ├── comma_default.png ├── graphing.js ├── index.html └── styles.css ├── fetch_chffr_data.py ├── get_chffr_token.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/chffr-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/chffr-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/chffr-api/HEAD/README -------------------------------------------------------------------------------- /canexplorer/can.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/chffr-api/HEAD/canexplorer/can.html -------------------------------------------------------------------------------- /canexplorer/canloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/chffr-api/HEAD/canexplorer/canloader.js -------------------------------------------------------------------------------- /canexplorer/dygraph-combined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/chffr-api/HEAD/canexplorer/dygraph-combined.js -------------------------------------------------------------------------------- /canexplorer/loadnpy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/chffr-api/HEAD/canexplorer/loadnpy.js -------------------------------------------------------------------------------- /explorer/.gitignore: -------------------------------------------------------------------------------- 1 | token.js 2 | 3 | -------------------------------------------------------------------------------- /explorer/comma_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/chffr-api/HEAD/explorer/comma_default.png -------------------------------------------------------------------------------- /explorer/graphing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/chffr-api/HEAD/explorer/graphing.js -------------------------------------------------------------------------------- /explorer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/chffr-api/HEAD/explorer/index.html -------------------------------------------------------------------------------- /explorer/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/chffr-api/HEAD/explorer/styles.css -------------------------------------------------------------------------------- /fetch_chffr_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/chffr-api/HEAD/fetch_chffr_data.py -------------------------------------------------------------------------------- /get_chffr_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/chffr-api/HEAD/get_chffr_token.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | oauth2client 2 | requests 3 | 4 | --------------------------------------------------------------------------------