From ea26810ea0be3dc97812cc32945db74ac805a827 Mon Sep 17 00:00:00 2001 From: Eric Date: Thu, 27 Apr 2023 22:07:56 -0700 Subject: [PATCH] Confirmed that TTGO projects are working --- ESP32_TTGO/AnimationImage/AnimationImage.ino | 31 ++++++++++++++++++ .../BLE_Secure_Server/BLE_Secure_Server.ino | 32 +++++++++++++++++++ .../TTGO_Battery_Indicator.ino | 31 ++++++++++++++++++ 3 files changed, 94 insertions(+) diff --git a/ESP32_TTGO/AnimationImage/AnimationImage.ino b/ESP32_TTGO/AnimationImage/AnimationImage.ino index f6c755d..acec570 100644 --- a/ESP32_TTGO/AnimationImage/AnimationImage.ino +++ b/ESP32_TTGO/AnimationImage/AnimationImage.ino @@ -1,3 +1,34 @@ +///////////////////////////////////////////////////////////////// +/* + [ESP32 TTGO] Getting Started! #StartingLine #BasicSetup (ft. Image Animation) + For More Information: https://youtu.be/Bl1C7Vdl3GA + Created by Eric N. (ThatProject) +*/ +///////////////////////////////////////////////////////////////// + +// Updated: 2023-04-27 +// Arduino core for the ESP32: 2.0.8 +// https://github.com/espressif/arduino-esp32 + +// TFT_eSPI: 2.5.0 +// https://github.com/Bodmer/TFT_eSPI + +// TJpg_Decoder: 1.0.8 +// https://github.com/Bodmer/TJpg_Decoder + +// arduino-esp32fs-plugin: 1.1 +// https://github.com/me-no-dev/arduino-esp32fs-plugin/releases/ + +// TFT_eSPI Display Setting +// Open user_setup_select.h in Text Editor +// Comment-> #include +// Uncomment-> #include + +// SPIFFS Uploder Tool +// Downlaod https://github.com/me-no-dev/arduino-esp32fs-plugin/releases/ +// Copy esp32fs.jar file to Arduino/tools/ESP32FS/tool/esp32fs.jar +// Since the tool cannot be used in Arduino IDE 2.x, you must use Arduion IDE 1.x. + #include "SPIFFS.h" #include #include "SPI.h" diff --git a/ESP32_TTGO/BLE_Secure_Server/BLE_Secure_Server.ino b/ESP32_TTGO/BLE_Secure_Server/BLE_Secure_Server.ino index 33899ae..42b663e 100644 --- a/ESP32_TTGO/BLE_Secure_Server/BLE_Secure_Server.ino +++ b/ESP32_TTGO/BLE_Secure_Server/BLE_Secure_Server.ino @@ -1,3 +1,35 @@ +///////////////////////////////////////////////////////////////// +/* + ESP32 Bluetooth LE Secure Server for multi clients (ft. PassKey) + For More Information: https://youtu.be/TwexLJwdLEw + Created by Eric N. (ThatProject) +*/ +///////////////////////////////////////////////////////////////// + +// Updated: 2023-04-27 +// Arduino core for the ESP32: 2.0.8 +// https://github.com/espressif/arduino-esp32 + +// TFT_eSPI: 2.5.0 +// https://github.com/Bodmer/TFT_eSPI + +// TJpg_Decoder: 1.0.8 +// https://github.com/Bodmer/TJpg_Decoder + +// arduino-esp32fs-plugin: 1.1 +// https://github.com/me-no-dev/arduino-esp32fs-plugin/releases/ + +// TFT_eSPI Display Setting +// Open user_setup_select.h in Text Editor +// Comment-> #include +// Uncomment-> #include + +// SPIFFS Uploder Tool +// Downlaod https://github.com/me-no-dev/arduino-esp32fs-plugin/releases/ +// Copy esp32fs.jar file to Arduino/tools/ESP32FS/tool/esp32fs.jar +// Since the tool cannot be used in Arduino IDE 2.x, you must use Arduion IDE 1.x. + + #include #include "SPIFFS.h" #include diff --git a/ESP32_TTGO/TTGO_Battery_Indicator/TTGO_Battery_Indicator.ino b/ESP32_TTGO/TTGO_Battery_Indicator/TTGO_Battery_Indicator.ino index 9337a61..081bd07 100644 --- a/ESP32_TTGO/TTGO_Battery_Indicator/TTGO_Battery_Indicator.ino +++ b/ESP32_TTGO/TTGO_Battery_Indicator/TTGO_Battery_Indicator.ino @@ -1,3 +1,34 @@ +///////////////////////////////////////////////////////////////// +/* + ESP32TTGO - Battery Indicator 🔋⚡ + For More Information: https://youtu.be/osAOdmZuvDc + Created by Eric N. (ThatProject) +*/ +///////////////////////////////////////////////////////////////// + +// Updated: 2023-04-27 +// Arduino core for the ESP32: 2.0.8 +// https://github.com/espressif/arduino-esp32 + +// TFT_eSPI: 2.5.0 +// https://github.com/Bodmer/TFT_eSPI + +// TJpg_Decoder: 1.0.8 +// https://github.com/Bodmer/TJpg_Decoder + +// arduino-esp32fs-plugin: 1.1 +// https://github.com/me-no-dev/arduino-esp32fs-plugin/releases/ + +// TFT_eSPI Display Setting +// Open user_setup_select.h in Text Editor +// Comment-> #include +// Uncomment-> #include + +// SPIFFS Uploder Tool +// Downlaod https://github.com/me-no-dev/arduino-esp32fs-plugin/releases/ +// Copy esp32fs.jar file to Arduino/tools/ESP32FS/tool/esp32fs.jar +// Since the tool cannot be used in Arduino IDE 2.x, you must use Arduion IDE 1.x. + #include #include "SPIFFS.h" #include