├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── README.md └── main ├── CMakeLists.txt ├── backend ├── tft_espi │ ├── spi_master_lobo.c │ ├── spi_master_lobo.h │ ├── stmpe610.h │ ├── tft.c │ ├── tft.h │ ├── tftspi.c │ └── tftspi.h ├── ttgobackend.c └── ttgobackend.h └── esp3d.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fededevi/esp_ttgo_pingo_3d/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fededevi/esp_ttgo_pingo_3d/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fededevi/esp_ttgo_pingo_3d/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fededevi/esp_ttgo_pingo_3d/HEAD/README.md -------------------------------------------------------------------------------- /main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fededevi/esp_ttgo_pingo_3d/HEAD/main/CMakeLists.txt -------------------------------------------------------------------------------- /main/backend/tft_espi/spi_master_lobo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fededevi/esp_ttgo_pingo_3d/HEAD/main/backend/tft_espi/spi_master_lobo.c -------------------------------------------------------------------------------- /main/backend/tft_espi/spi_master_lobo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fededevi/esp_ttgo_pingo_3d/HEAD/main/backend/tft_espi/spi_master_lobo.h -------------------------------------------------------------------------------- /main/backend/tft_espi/stmpe610.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fededevi/esp_ttgo_pingo_3d/HEAD/main/backend/tft_espi/stmpe610.h -------------------------------------------------------------------------------- /main/backend/tft_espi/tft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fededevi/esp_ttgo_pingo_3d/HEAD/main/backend/tft_espi/tft.c -------------------------------------------------------------------------------- /main/backend/tft_espi/tft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fededevi/esp_ttgo_pingo_3d/HEAD/main/backend/tft_espi/tft.h -------------------------------------------------------------------------------- /main/backend/tft_espi/tftspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fededevi/esp_ttgo_pingo_3d/HEAD/main/backend/tft_espi/tftspi.c -------------------------------------------------------------------------------- /main/backend/tft_espi/tftspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fededevi/esp_ttgo_pingo_3d/HEAD/main/backend/tft_espi/tftspi.h -------------------------------------------------------------------------------- /main/backend/ttgobackend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fededevi/esp_ttgo_pingo_3d/HEAD/main/backend/ttgobackend.c -------------------------------------------------------------------------------- /main/backend/ttgobackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fededevi/esp_ttgo_pingo_3d/HEAD/main/backend/ttgobackend.h -------------------------------------------------------------------------------- /main/esp3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fededevi/esp_ttgo_pingo_3d/HEAD/main/esp3d.c --------------------------------------------------------------------------------