├── .clang-format ├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── Launcher_anim.webp ├── M5Launcher.png ├── New Launcher.jpg ├── README.md ├── boards ├── CYD-2432S028 │ ├── custom_flags.py │ ├── interface.cpp │ └── platformio.ini ├── ESP-General │ ├── interface.cpp │ └── platformio.ini ├── README.md ├── _New-Device-Model │ ├── interface.cpp │ └── platformio.ini ├── _jsonfiles │ ├── CYD-2432S028.json │ ├── ESP32S3-4M.json │ ├── ESP32S3-General.json │ ├── _New-Device-Model.json │ ├── arduino-nesso-n1.json │ ├── awok-mini.json │ ├── awok-v4og.json │ ├── elecrow-esp32-24B.json │ ├── esp32-2432S022C.json │ ├── esp32-2432S024C.json │ ├── esp32-2432S024R.json │ ├── esp32-2432S032C.json │ ├── esp32-2432S032R.json │ ├── esp32-2432W328C.json │ ├── esp32-3248S035C.json │ ├── esp32-3248S035R.json │ ├── esp32c3-2424S012C.json │ ├── esp32dev.json │ ├── esp32s3-1732S019C.json │ ├── esp32s3-3248W535N.json │ ├── esp32s3-4827S043C.json │ ├── esp32s3-4827S043R.json │ ├── esp32s3-4848S040CIY1.json │ ├── esp32s3-4848S040CIY3.json │ ├── esp32s3-8048S043C.json │ ├── esp32s3-8048S043R.json │ ├── esp32s3-8048S050C.json │ ├── esp32s3-8048S050R.json │ ├── esp32s3-8048S070C.json │ ├── esp32s3-8048S070R.json │ ├── esp32s3-8048S550C.json │ ├── esp32s3-s3touchlcd7.json │ ├── lilygo-t-deck-pro.json │ ├── lilygo-t-deck.json │ ├── lilygo-t-display-s3-pro.json │ ├── lilygo-t-display-s3-touch.json │ ├── lilygo-t-dongle-s3-tft.json │ ├── lilygo-t-embed-cc1101.json │ ├── lilygo-t-embed.json │ ├── lilygo-t-hmi.json │ ├── lilygo-t-lora-pager.json │ ├── lilygo-t5-epaper-s3-pro.json │ ├── lilygo-t5-epaper.json │ ├── m5stack-cardputer.json │ ├── m5stack-core-16M.json │ ├── m5stack-core.json │ ├── m5stack-core2.json │ ├── m5stack-cores3.json │ ├── m5stack-cplus1_1.json │ ├── m5stack-cplus2.json │ ├── m5stack-paper-s3.json │ ├── m5stack-paper.json │ ├── m5stack-tab5.json │ ├── m5stick-c.json │ ├── marauder-mini.json │ ├── marauder-v4og.json │ └── smoochiee-board.json ├── arduino-nesso-n1 │ ├── interface.cpp │ └── platformio.ini ├── elecrow │ ├── interface.cpp │ └── platformio.ini ├── lilygo-t-deck-pro │ ├── interface.cpp │ └── platformio.ini ├── lilygo-t-deck │ ├── interface.cpp │ └── platformio.ini ├── lilygo-t-display-s3-amoled │ ├── interface.cpp │ └── platformio.ini ├── lilygo-t-display-s3-pro │ ├── interface.cpp │ └── platformio.ini ├── lilygo-t-display-s3-touch │ ├── interface.cpp │ └── platformio.ini ├── lilygo-t-dongle-s3-tft │ ├── interface.cpp │ └── platformio.ini ├── lilygo-t-embed-cc1101 │ ├── interface.cpp │ └── platformio.ini ├── lilygo-t-hmi │ ├── connections.md │ ├── interface.cpp │ └── platformio.ini ├── lilygo-t-lora-pager │ ├── interface.cpp │ └── platformio.ini ├── lilygo-t5-epaper-s3-pro │ ├── interface.cpp │ └── platformio.ini ├── m5stack-cardputer │ ├── CardputerADV.md │ ├── interface.cpp │ └── platformio.ini ├── m5stack-core │ ├── interface.cpp │ └── platformio.ini ├── m5stack-core2 │ ├── interface.cpp │ └── platformio.ini ├── m5stack-cores3 │ ├── interface.cpp │ └── platformio.ini ├── m5stack-cplus1_1 │ ├── interface.cpp │ └── platformio.ini ├── m5stack-cplus2 │ ├── interface.cpp │ └── platformio.ini ├── m5stack-paper-s3 │ ├── interface.cpp │ └── platformio.ini ├── m5stack-tab5 │ ├── interface.cpp │ └── platformio.ini ├── marauder-mini │ ├── interface.cpp │ └── platformio.ini ├── marauder-v4og │ ├── interface.cpp │ └── platformio.ini ├── phantom │ ├── interface.cpp │ ├── phantom.ini │ └── pins_arduino.h ├── pinouts │ ├── CYD-2432S028.h │ ├── ESP32S3-4M.h │ ├── ESP32S3-General.h │ ├── _New-Device-Model.h │ ├── arduino-nesso-n1.h │ ├── elecrow-esp32-24B.h │ ├── esp32dev.h │ ├── esp32s3.h │ ├── lilygo-t-deck.h │ ├── lilygo-t-display-s3-pro.h │ ├── lilygo-t-display-s3-touch.h │ ├── lilygo-t-dongle-s3-tft.h │ ├── lilygo-t-embed-cc1101.h │ ├── lilygo-t-embed.h │ ├── lilygo-t-hmi.h │ ├── lilygo-t-lora-pager.h │ ├── m5stack-c.h │ ├── m5stack-cardputer.h │ ├── m5stack-core.h │ ├── m5stack-core2.h │ ├── m5stack-cores3.h │ ├── m5stack-cplus1_1.h │ ├── m5stack-cplus2.h │ ├── m5stack-paper-s3.h │ ├── m5stack-paper.h │ ├── m5stack-tab5.h │ ├── marauder-mini.h │ ├── marauder-v4og.h │ ├── pins_arduino.h │ ├── smoochiee-board.h │ └── variant.cpp └── smoochiee-board │ ├── interface.cpp │ └── platformio.ini ├── include ├── VectorDisplay.h ├── globals.h ├── interface.h └── pre_compiler.h ├── lib ├── CYD-touch │ ├── CYD28_TouchscreenC.cpp │ ├── CYD28_TouchscreenC.h │ ├── CYD28_TouchscreenR.cpp │ └── CYD28_TouchscreenR.h ├── Custom_Update │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── CustomUpdate.h │ │ ├── CustomUpdater.cpp │ │ ├── HttpsOTAUpdate.cpp │ │ └── HttpsOTAUpdate.h ├── M5Stack-HTTPUpdate │ ├── keywords.txt │ ├── library.properties │ └── src │ │ ├── M5-HTTPUpdate.cpp │ │ └── M5-HTTPUpdate.h ├── README └── utility │ ├── AXP192.cpp │ ├── AXP192.h │ ├── Keyboard.cpp │ ├── Keyboard.h │ ├── Keyboard_def.h │ ├── bq27220.cpp │ └── bq27220.h ├── platformio.ini ├── src ├── display.cpp ├── display.h ├── main.cpp ├── massStorage.cpp ├── massStorage.h ├── mykeyboard.cpp ├── mykeyboard.h ├── onlineLauncher.cpp ├── onlineLauncher.h ├── partitioner.cpp ├── partitioner.h ├── powerSave.cpp ├── powerSave.h ├── sd_functions.cpp ├── sd_functions.h ├── settings.cpp ├── settings.h ├── tft.cpp ├── tft.h ├── utils.cpp ├── webInterface.cpp └── webInterface.h ├── support_files ├── BootImageGifMaker.py ├── UiFlow2_nvs.bin ├── UiFlow2_nvs_p4.bin ├── custom_16Mb.csv ├── custom_16Mb_p4.csv ├── custom_4Mb.csv ├── custom_4Mb_noOta.csv ├── custom_4Mbcore.csv ├── custom_8Mb.csv ├── custom_8Mb2.csv ├── custom_headless.csv ├── esp32p4.bin ├── merge.py ├── nvs_script.py ├── prep_web_files.py └── upload_patch.py └── webUi ├── index.html ├── login.html ├── logout.html ├── scripts.js ├── style.css └── style_4mb.css /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /Launcher_anim.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/Launcher_anim.webp -------------------------------------------------------------------------------- /M5Launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/M5Launcher.png -------------------------------------------------------------------------------- /New Launcher.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/New Launcher.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/README.md -------------------------------------------------------------------------------- /boards/CYD-2432S028/custom_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/CYD-2432S028/custom_flags.py -------------------------------------------------------------------------------- /boards/CYD-2432S028/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/CYD-2432S028/interface.cpp -------------------------------------------------------------------------------- /boards/CYD-2432S028/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/CYD-2432S028/platformio.ini -------------------------------------------------------------------------------- /boards/ESP-General/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/ESP-General/interface.cpp -------------------------------------------------------------------------------- /boards/ESP-General/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/ESP-General/platformio.ini -------------------------------------------------------------------------------- /boards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/README.md -------------------------------------------------------------------------------- /boards/_New-Device-Model/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_New-Device-Model/interface.cpp -------------------------------------------------------------------------------- /boards/_New-Device-Model/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_New-Device-Model/platformio.ini -------------------------------------------------------------------------------- /boards/_jsonfiles/CYD-2432S028.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/CYD-2432S028.json -------------------------------------------------------------------------------- /boards/_jsonfiles/ESP32S3-4M.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/ESP32S3-4M.json -------------------------------------------------------------------------------- /boards/_jsonfiles/ESP32S3-General.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/ESP32S3-General.json -------------------------------------------------------------------------------- /boards/_jsonfiles/_New-Device-Model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/_New-Device-Model.json -------------------------------------------------------------------------------- /boards/_jsonfiles/arduino-nesso-n1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/arduino-nesso-n1.json -------------------------------------------------------------------------------- /boards/_jsonfiles/awok-mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/awok-mini.json -------------------------------------------------------------------------------- /boards/_jsonfiles/awok-v4og.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/awok-v4og.json -------------------------------------------------------------------------------- /boards/_jsonfiles/elecrow-esp32-24B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/elecrow-esp32-24B.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32-2432S022C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32-2432S022C.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32-2432S024C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32-2432S024C.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32-2432S024R.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32-2432S024R.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32-2432S032C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32-2432S032C.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32-2432S032R.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32-2432S032R.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32-2432W328C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32-2432W328C.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32-3248S035C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32-3248S035C.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32-3248S035R.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32-3248S035R.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32c3-2424S012C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32c3-2424S012C.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32dev.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32s3-1732S019C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32s3-1732S019C.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32s3-3248W535N.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32s3-3248W535N.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32s3-4827S043C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32s3-4827S043C.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32s3-4827S043R.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32s3-4827S043R.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32s3-4848S040CIY1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32s3-4848S040CIY1.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32s3-4848S040CIY3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32s3-4848S040CIY3.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32s3-8048S043C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32s3-8048S043C.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32s3-8048S043R.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32s3-8048S043R.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32s3-8048S050C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32s3-8048S050C.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32s3-8048S050R.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32s3-8048S050R.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32s3-8048S070C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32s3-8048S070C.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32s3-8048S070R.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32s3-8048S070R.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32s3-8048S550C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32s3-8048S550C.json -------------------------------------------------------------------------------- /boards/_jsonfiles/esp32s3-s3touchlcd7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/esp32s3-s3touchlcd7.json -------------------------------------------------------------------------------- /boards/_jsonfiles/lilygo-t-deck-pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/lilygo-t-deck-pro.json -------------------------------------------------------------------------------- /boards/_jsonfiles/lilygo-t-deck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/lilygo-t-deck.json -------------------------------------------------------------------------------- /boards/_jsonfiles/lilygo-t-display-s3-pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/lilygo-t-display-s3-pro.json -------------------------------------------------------------------------------- /boards/_jsonfiles/lilygo-t-display-s3-touch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/lilygo-t-display-s3-touch.json -------------------------------------------------------------------------------- /boards/_jsonfiles/lilygo-t-dongle-s3-tft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/lilygo-t-dongle-s3-tft.json -------------------------------------------------------------------------------- /boards/_jsonfiles/lilygo-t-embed-cc1101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/lilygo-t-embed-cc1101.json -------------------------------------------------------------------------------- /boards/_jsonfiles/lilygo-t-embed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/lilygo-t-embed.json -------------------------------------------------------------------------------- /boards/_jsonfiles/lilygo-t-hmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/lilygo-t-hmi.json -------------------------------------------------------------------------------- /boards/_jsonfiles/lilygo-t-lora-pager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/lilygo-t-lora-pager.json -------------------------------------------------------------------------------- /boards/_jsonfiles/lilygo-t5-epaper-s3-pro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/lilygo-t5-epaper-s3-pro.json -------------------------------------------------------------------------------- /boards/_jsonfiles/lilygo-t5-epaper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/lilygo-t5-epaper.json -------------------------------------------------------------------------------- /boards/_jsonfiles/m5stack-cardputer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/m5stack-cardputer.json -------------------------------------------------------------------------------- /boards/_jsonfiles/m5stack-core-16M.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/m5stack-core-16M.json -------------------------------------------------------------------------------- /boards/_jsonfiles/m5stack-core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/m5stack-core.json -------------------------------------------------------------------------------- /boards/_jsonfiles/m5stack-core2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/m5stack-core2.json -------------------------------------------------------------------------------- /boards/_jsonfiles/m5stack-cores3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/m5stack-cores3.json -------------------------------------------------------------------------------- /boards/_jsonfiles/m5stack-cplus1_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/m5stack-cplus1_1.json -------------------------------------------------------------------------------- /boards/_jsonfiles/m5stack-cplus2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/m5stack-cplus2.json -------------------------------------------------------------------------------- /boards/_jsonfiles/m5stack-paper-s3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/m5stack-paper-s3.json -------------------------------------------------------------------------------- /boards/_jsonfiles/m5stack-paper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/m5stack-paper.json -------------------------------------------------------------------------------- /boards/_jsonfiles/m5stack-tab5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/m5stack-tab5.json -------------------------------------------------------------------------------- /boards/_jsonfiles/m5stick-c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/m5stick-c.json -------------------------------------------------------------------------------- /boards/_jsonfiles/marauder-mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/marauder-mini.json -------------------------------------------------------------------------------- /boards/_jsonfiles/marauder-v4og.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/marauder-v4og.json -------------------------------------------------------------------------------- /boards/_jsonfiles/smoochiee-board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/_jsonfiles/smoochiee-board.json -------------------------------------------------------------------------------- /boards/arduino-nesso-n1/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/arduino-nesso-n1/interface.cpp -------------------------------------------------------------------------------- /boards/arduino-nesso-n1/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/arduino-nesso-n1/platformio.ini -------------------------------------------------------------------------------- /boards/elecrow/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/elecrow/interface.cpp -------------------------------------------------------------------------------- /boards/elecrow/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/elecrow/platformio.ini -------------------------------------------------------------------------------- /boards/lilygo-t-deck-pro/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t-deck-pro/interface.cpp -------------------------------------------------------------------------------- /boards/lilygo-t-deck-pro/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t-deck-pro/platformio.ini -------------------------------------------------------------------------------- /boards/lilygo-t-deck/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t-deck/interface.cpp -------------------------------------------------------------------------------- /boards/lilygo-t-deck/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t-deck/platformio.ini -------------------------------------------------------------------------------- /boards/lilygo-t-display-s3-amoled/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t-display-s3-amoled/interface.cpp -------------------------------------------------------------------------------- /boards/lilygo-t-display-s3-amoled/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t-display-s3-amoled/platformio.ini -------------------------------------------------------------------------------- /boards/lilygo-t-display-s3-pro/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t-display-s3-pro/interface.cpp -------------------------------------------------------------------------------- /boards/lilygo-t-display-s3-pro/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t-display-s3-pro/platformio.ini -------------------------------------------------------------------------------- /boards/lilygo-t-display-s3-touch/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t-display-s3-touch/interface.cpp -------------------------------------------------------------------------------- /boards/lilygo-t-display-s3-touch/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t-display-s3-touch/platformio.ini -------------------------------------------------------------------------------- /boards/lilygo-t-dongle-s3-tft/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t-dongle-s3-tft/interface.cpp -------------------------------------------------------------------------------- /boards/lilygo-t-dongle-s3-tft/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t-dongle-s3-tft/platformio.ini -------------------------------------------------------------------------------- /boards/lilygo-t-embed-cc1101/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t-embed-cc1101/interface.cpp -------------------------------------------------------------------------------- /boards/lilygo-t-embed-cc1101/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t-embed-cc1101/platformio.ini -------------------------------------------------------------------------------- /boards/lilygo-t-hmi/connections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t-hmi/connections.md -------------------------------------------------------------------------------- /boards/lilygo-t-hmi/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t-hmi/interface.cpp -------------------------------------------------------------------------------- /boards/lilygo-t-hmi/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t-hmi/platformio.ini -------------------------------------------------------------------------------- /boards/lilygo-t-lora-pager/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t-lora-pager/interface.cpp -------------------------------------------------------------------------------- /boards/lilygo-t-lora-pager/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t-lora-pager/platformio.ini -------------------------------------------------------------------------------- /boards/lilygo-t5-epaper-s3-pro/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t5-epaper-s3-pro/interface.cpp -------------------------------------------------------------------------------- /boards/lilygo-t5-epaper-s3-pro/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/lilygo-t5-epaper-s3-pro/platformio.ini -------------------------------------------------------------------------------- /boards/m5stack-cardputer/CardputerADV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/m5stack-cardputer/CardputerADV.md -------------------------------------------------------------------------------- /boards/m5stack-cardputer/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/m5stack-cardputer/interface.cpp -------------------------------------------------------------------------------- /boards/m5stack-cardputer/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/m5stack-cardputer/platformio.ini -------------------------------------------------------------------------------- /boards/m5stack-core/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/m5stack-core/interface.cpp -------------------------------------------------------------------------------- /boards/m5stack-core/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/m5stack-core/platformio.ini -------------------------------------------------------------------------------- /boards/m5stack-core2/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/m5stack-core2/interface.cpp -------------------------------------------------------------------------------- /boards/m5stack-core2/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/m5stack-core2/platformio.ini -------------------------------------------------------------------------------- /boards/m5stack-cores3/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/m5stack-cores3/interface.cpp -------------------------------------------------------------------------------- /boards/m5stack-cores3/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/m5stack-cores3/platformio.ini -------------------------------------------------------------------------------- /boards/m5stack-cplus1_1/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/m5stack-cplus1_1/interface.cpp -------------------------------------------------------------------------------- /boards/m5stack-cplus1_1/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/m5stack-cplus1_1/platformio.ini -------------------------------------------------------------------------------- /boards/m5stack-cplus2/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/m5stack-cplus2/interface.cpp -------------------------------------------------------------------------------- /boards/m5stack-cplus2/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/m5stack-cplus2/platformio.ini -------------------------------------------------------------------------------- /boards/m5stack-paper-s3/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/m5stack-paper-s3/interface.cpp -------------------------------------------------------------------------------- /boards/m5stack-paper-s3/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/m5stack-paper-s3/platformio.ini -------------------------------------------------------------------------------- /boards/m5stack-tab5/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/m5stack-tab5/interface.cpp -------------------------------------------------------------------------------- /boards/m5stack-tab5/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/m5stack-tab5/platformio.ini -------------------------------------------------------------------------------- /boards/marauder-mini/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/marauder-mini/interface.cpp -------------------------------------------------------------------------------- /boards/marauder-mini/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/marauder-mini/platformio.ini -------------------------------------------------------------------------------- /boards/marauder-v4og/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/marauder-v4og/interface.cpp -------------------------------------------------------------------------------- /boards/marauder-v4og/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/marauder-v4og/platformio.ini -------------------------------------------------------------------------------- /boards/phantom/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/phantom/interface.cpp -------------------------------------------------------------------------------- /boards/phantom/phantom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/phantom/phantom.ini -------------------------------------------------------------------------------- /boards/phantom/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/phantom/pins_arduino.h -------------------------------------------------------------------------------- /boards/pinouts/CYD-2432S028.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/CYD-2432S028.h -------------------------------------------------------------------------------- /boards/pinouts/ESP32S3-4M.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/ESP32S3-4M.h -------------------------------------------------------------------------------- /boards/pinouts/ESP32S3-General.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/ESP32S3-General.h -------------------------------------------------------------------------------- /boards/pinouts/_New-Device-Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/_New-Device-Model.h -------------------------------------------------------------------------------- /boards/pinouts/arduino-nesso-n1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/arduino-nesso-n1.h -------------------------------------------------------------------------------- /boards/pinouts/elecrow-esp32-24B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/elecrow-esp32-24B.h -------------------------------------------------------------------------------- /boards/pinouts/esp32dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/esp32dev.h -------------------------------------------------------------------------------- /boards/pinouts/esp32s3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/esp32s3.h -------------------------------------------------------------------------------- /boards/pinouts/lilygo-t-deck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/lilygo-t-deck.h -------------------------------------------------------------------------------- /boards/pinouts/lilygo-t-display-s3-pro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/lilygo-t-display-s3-pro.h -------------------------------------------------------------------------------- /boards/pinouts/lilygo-t-display-s3-touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/lilygo-t-display-s3-touch.h -------------------------------------------------------------------------------- /boards/pinouts/lilygo-t-dongle-s3-tft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/lilygo-t-dongle-s3-tft.h -------------------------------------------------------------------------------- /boards/pinouts/lilygo-t-embed-cc1101.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/lilygo-t-embed-cc1101.h -------------------------------------------------------------------------------- /boards/pinouts/lilygo-t-embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/lilygo-t-embed.h -------------------------------------------------------------------------------- /boards/pinouts/lilygo-t-hmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/lilygo-t-hmi.h -------------------------------------------------------------------------------- /boards/pinouts/lilygo-t-lora-pager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/lilygo-t-lora-pager.h -------------------------------------------------------------------------------- /boards/pinouts/m5stack-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/m5stack-c.h -------------------------------------------------------------------------------- /boards/pinouts/m5stack-cardputer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/m5stack-cardputer.h -------------------------------------------------------------------------------- /boards/pinouts/m5stack-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/m5stack-core.h -------------------------------------------------------------------------------- /boards/pinouts/m5stack-core2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/m5stack-core2.h -------------------------------------------------------------------------------- /boards/pinouts/m5stack-cores3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/m5stack-cores3.h -------------------------------------------------------------------------------- /boards/pinouts/m5stack-cplus1_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/m5stack-cplus1_1.h -------------------------------------------------------------------------------- /boards/pinouts/m5stack-cplus2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/m5stack-cplus2.h -------------------------------------------------------------------------------- /boards/pinouts/m5stack-paper-s3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/m5stack-paper-s3.h -------------------------------------------------------------------------------- /boards/pinouts/m5stack-paper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/m5stack-paper.h -------------------------------------------------------------------------------- /boards/pinouts/m5stack-tab5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/m5stack-tab5.h -------------------------------------------------------------------------------- /boards/pinouts/marauder-mini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/marauder-mini.h -------------------------------------------------------------------------------- /boards/pinouts/marauder-v4og.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/marauder-v4og.h -------------------------------------------------------------------------------- /boards/pinouts/pins_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/pins_arduino.h -------------------------------------------------------------------------------- /boards/pinouts/smoochiee-board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/smoochiee-board.h -------------------------------------------------------------------------------- /boards/pinouts/variant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/pinouts/variant.cpp -------------------------------------------------------------------------------- /boards/smoochiee-board/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/smoochiee-board/interface.cpp -------------------------------------------------------------------------------- /boards/smoochiee-board/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/boards/smoochiee-board/platformio.ini -------------------------------------------------------------------------------- /include/VectorDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/include/VectorDisplay.h -------------------------------------------------------------------------------- /include/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/include/globals.h -------------------------------------------------------------------------------- /include/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/include/interface.h -------------------------------------------------------------------------------- /include/pre_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/include/pre_compiler.h -------------------------------------------------------------------------------- /lib/CYD-touch/CYD28_TouchscreenC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/CYD-touch/CYD28_TouchscreenC.cpp -------------------------------------------------------------------------------- /lib/CYD-touch/CYD28_TouchscreenC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/CYD-touch/CYD28_TouchscreenC.h -------------------------------------------------------------------------------- /lib/CYD-touch/CYD28_TouchscreenR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/CYD-touch/CYD28_TouchscreenR.cpp -------------------------------------------------------------------------------- /lib/CYD-touch/CYD28_TouchscreenR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/CYD-touch/CYD28_TouchscreenR.h -------------------------------------------------------------------------------- /lib/Custom_Update/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/Custom_Update/keywords.txt -------------------------------------------------------------------------------- /lib/Custom_Update/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/Custom_Update/library.properties -------------------------------------------------------------------------------- /lib/Custom_Update/src/CustomUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/Custom_Update/src/CustomUpdate.h -------------------------------------------------------------------------------- /lib/Custom_Update/src/CustomUpdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/Custom_Update/src/CustomUpdater.cpp -------------------------------------------------------------------------------- /lib/Custom_Update/src/HttpsOTAUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/Custom_Update/src/HttpsOTAUpdate.cpp -------------------------------------------------------------------------------- /lib/Custom_Update/src/HttpsOTAUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/Custom_Update/src/HttpsOTAUpdate.h -------------------------------------------------------------------------------- /lib/M5Stack-HTTPUpdate/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/M5Stack-HTTPUpdate/keywords.txt -------------------------------------------------------------------------------- /lib/M5Stack-HTTPUpdate/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/M5Stack-HTTPUpdate/library.properties -------------------------------------------------------------------------------- /lib/M5Stack-HTTPUpdate/src/M5-HTTPUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/M5Stack-HTTPUpdate/src/M5-HTTPUpdate.cpp -------------------------------------------------------------------------------- /lib/M5Stack-HTTPUpdate/src/M5-HTTPUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/M5Stack-HTTPUpdate/src/M5-HTTPUpdate.h -------------------------------------------------------------------------------- /lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/README -------------------------------------------------------------------------------- /lib/utility/AXP192.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/utility/AXP192.cpp -------------------------------------------------------------------------------- /lib/utility/AXP192.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/utility/AXP192.h -------------------------------------------------------------------------------- /lib/utility/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/utility/Keyboard.cpp -------------------------------------------------------------------------------- /lib/utility/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/utility/Keyboard.h -------------------------------------------------------------------------------- /lib/utility/Keyboard_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/utility/Keyboard_def.h -------------------------------------------------------------------------------- /lib/utility/bq27220.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/utility/bq27220.cpp -------------------------------------------------------------------------------- /lib/utility/bq27220.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/lib/utility/bq27220.h -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/display.cpp -------------------------------------------------------------------------------- /src/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/display.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/massStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/massStorage.cpp -------------------------------------------------------------------------------- /src/massStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/massStorage.h -------------------------------------------------------------------------------- /src/mykeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/mykeyboard.cpp -------------------------------------------------------------------------------- /src/mykeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/mykeyboard.h -------------------------------------------------------------------------------- /src/onlineLauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/onlineLauncher.cpp -------------------------------------------------------------------------------- /src/onlineLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/onlineLauncher.h -------------------------------------------------------------------------------- /src/partitioner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/partitioner.cpp -------------------------------------------------------------------------------- /src/partitioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/partitioner.h -------------------------------------------------------------------------------- /src/powerSave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/powerSave.cpp -------------------------------------------------------------------------------- /src/powerSave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/powerSave.h -------------------------------------------------------------------------------- /src/sd_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/sd_functions.cpp -------------------------------------------------------------------------------- /src/sd_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/sd_functions.h -------------------------------------------------------------------------------- /src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/settings.cpp -------------------------------------------------------------------------------- /src/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/settings.h -------------------------------------------------------------------------------- /src/tft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/tft.cpp -------------------------------------------------------------------------------- /src/tft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/tft.h -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/webInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/webInterface.cpp -------------------------------------------------------------------------------- /src/webInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/src/webInterface.h -------------------------------------------------------------------------------- /support_files/BootImageGifMaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/support_files/BootImageGifMaker.py -------------------------------------------------------------------------------- /support_files/UiFlow2_nvs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/support_files/UiFlow2_nvs.bin -------------------------------------------------------------------------------- /support_files/UiFlow2_nvs_p4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/support_files/UiFlow2_nvs_p4.bin -------------------------------------------------------------------------------- /support_files/custom_16Mb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/support_files/custom_16Mb.csv -------------------------------------------------------------------------------- /support_files/custom_16Mb_p4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/support_files/custom_16Mb_p4.csv -------------------------------------------------------------------------------- /support_files/custom_4Mb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/support_files/custom_4Mb.csv -------------------------------------------------------------------------------- /support_files/custom_4Mb_noOta.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/support_files/custom_4Mb_noOta.csv -------------------------------------------------------------------------------- /support_files/custom_4Mbcore.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/support_files/custom_4Mbcore.csv -------------------------------------------------------------------------------- /support_files/custom_8Mb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/support_files/custom_8Mb.csv -------------------------------------------------------------------------------- /support_files/custom_8Mb2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/support_files/custom_8Mb2.csv -------------------------------------------------------------------------------- /support_files/custom_headless.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/support_files/custom_headless.csv -------------------------------------------------------------------------------- /support_files/esp32p4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/support_files/esp32p4.bin -------------------------------------------------------------------------------- /support_files/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/support_files/merge.py -------------------------------------------------------------------------------- /support_files/nvs_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/support_files/nvs_script.py -------------------------------------------------------------------------------- /support_files/prep_web_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/support_files/prep_web_files.py -------------------------------------------------------------------------------- /support_files/upload_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/support_files/upload_patch.py -------------------------------------------------------------------------------- /webUi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/webUi/index.html -------------------------------------------------------------------------------- /webUi/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/webUi/login.html -------------------------------------------------------------------------------- /webUi/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/webUi/logout.html -------------------------------------------------------------------------------- /webUi/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/webUi/scripts.js -------------------------------------------------------------------------------- /webUi/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/webUi/style.css -------------------------------------------------------------------------------- /webUi/style_4mb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmorcelli/Launcher/HEAD/webUi/style_4mb.css --------------------------------------------------------------------------------