├── .gitignore ├── README.md ├── diags.py ├── docs ├── IMG_6732.JPG ├── IMG_7624.JPG ├── IMG_7625.JPG ├── IMG_7629.JPG ├── IMG_7632.JPG ├── IMG_7633.JPG └── IMG_7634.JPG ├── elevation.py ├── gps.py └── services ├── diags.service └── gps.service /.gitignore: -------------------------------------------------------------------------------- 1 | test* 2 | *.pyc 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuehl/carputer/HEAD/README.md -------------------------------------------------------------------------------- /diags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuehl/carputer/HEAD/diags.py -------------------------------------------------------------------------------- /docs/IMG_6732.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuehl/carputer/HEAD/docs/IMG_6732.JPG -------------------------------------------------------------------------------- /docs/IMG_7624.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuehl/carputer/HEAD/docs/IMG_7624.JPG -------------------------------------------------------------------------------- /docs/IMG_7625.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuehl/carputer/HEAD/docs/IMG_7625.JPG -------------------------------------------------------------------------------- /docs/IMG_7629.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuehl/carputer/HEAD/docs/IMG_7629.JPG -------------------------------------------------------------------------------- /docs/IMG_7632.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuehl/carputer/HEAD/docs/IMG_7632.JPG -------------------------------------------------------------------------------- /docs/IMG_7633.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuehl/carputer/HEAD/docs/IMG_7633.JPG -------------------------------------------------------------------------------- /docs/IMG_7634.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuehl/carputer/HEAD/docs/IMG_7634.JPG -------------------------------------------------------------------------------- /elevation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuehl/carputer/HEAD/elevation.py -------------------------------------------------------------------------------- /gps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuehl/carputer/HEAD/gps.py -------------------------------------------------------------------------------- /services/diags.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuehl/carputer/HEAD/services/diags.service -------------------------------------------------------------------------------- /services/gps.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbuehl/carputer/HEAD/services/gps.service --------------------------------------------------------------------------------