├── .gitmodules ├── README.md ├── gpx_converter └── gpx_converter.py ├── map_converter ├── README.md └── map_converter.py ├── ttgo_tcamplus_map_demo ├── .gitignore ├── CMakeLists.txt ├── Makefile ├── components ├── main │ ├── CMakeLists.txt │ ├── component.mk │ └── main.c └── sdkconfig └── ttgo_tcamplus_map_demo2 ├── .gitignore ├── CMakeLists.txt ├── Makefile ├── components ├── main ├── CMakeLists.txt ├── component.mk └── main.c ├── media └── ttgo_osm_demo.mp4 └── sdkconfig /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mryndzionek/esp32_offline_osm/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mryndzionek/esp32_offline_osm/HEAD/README.md -------------------------------------------------------------------------------- /gpx_converter/gpx_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mryndzionek/esp32_offline_osm/HEAD/gpx_converter/gpx_converter.py -------------------------------------------------------------------------------- /map_converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mryndzionek/esp32_offline_osm/HEAD/map_converter/README.md -------------------------------------------------------------------------------- /map_converter/map_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mryndzionek/esp32_offline_osm/HEAD/map_converter/map_converter.py -------------------------------------------------------------------------------- /ttgo_tcamplus_map_demo/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /ttgo_tcamplus_map_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mryndzionek/esp32_offline_osm/HEAD/ttgo_tcamplus_map_demo/CMakeLists.txt -------------------------------------------------------------------------------- /ttgo_tcamplus_map_demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mryndzionek/esp32_offline_osm/HEAD/ttgo_tcamplus_map_demo/Makefile -------------------------------------------------------------------------------- /ttgo_tcamplus_map_demo/components: -------------------------------------------------------------------------------- 1 | ../components -------------------------------------------------------------------------------- /ttgo_tcamplus_map_demo/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mryndzionek/esp32_offline_osm/HEAD/ttgo_tcamplus_map_demo/main/CMakeLists.txt -------------------------------------------------------------------------------- /ttgo_tcamplus_map_demo/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mryndzionek/esp32_offline_osm/HEAD/ttgo_tcamplus_map_demo/main/component.mk -------------------------------------------------------------------------------- /ttgo_tcamplus_map_demo/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mryndzionek/esp32_offline_osm/HEAD/ttgo_tcamplus_map_demo/main/main.c -------------------------------------------------------------------------------- /ttgo_tcamplus_map_demo/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mryndzionek/esp32_offline_osm/HEAD/ttgo_tcamplus_map_demo/sdkconfig -------------------------------------------------------------------------------- /ttgo_tcamplus_map_demo2/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /ttgo_tcamplus_map_demo2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mryndzionek/esp32_offline_osm/HEAD/ttgo_tcamplus_map_demo2/CMakeLists.txt -------------------------------------------------------------------------------- /ttgo_tcamplus_map_demo2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mryndzionek/esp32_offline_osm/HEAD/ttgo_tcamplus_map_demo2/Makefile -------------------------------------------------------------------------------- /ttgo_tcamplus_map_demo2/components: -------------------------------------------------------------------------------- 1 | ../components -------------------------------------------------------------------------------- /ttgo_tcamplus_map_demo2/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mryndzionek/esp32_offline_osm/HEAD/ttgo_tcamplus_map_demo2/main/CMakeLists.txt -------------------------------------------------------------------------------- /ttgo_tcamplus_map_demo2/main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mryndzionek/esp32_offline_osm/HEAD/ttgo_tcamplus_map_demo2/main/component.mk -------------------------------------------------------------------------------- /ttgo_tcamplus_map_demo2/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mryndzionek/esp32_offline_osm/HEAD/ttgo_tcamplus_map_demo2/main/main.c -------------------------------------------------------------------------------- /ttgo_tcamplus_map_demo2/media/ttgo_osm_demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mryndzionek/esp32_offline_osm/HEAD/ttgo_tcamplus_map_demo2/media/ttgo_osm_demo.mp4 -------------------------------------------------------------------------------- /ttgo_tcamplus_map_demo2/sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mryndzionek/esp32_offline_osm/HEAD/ttgo_tcamplus_map_demo2/sdkconfig --------------------------------------------------------------------------------