Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CarteSD/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"_comment": "RaptorLauncher v0.9 - reglages generaux",
"_comment": "RaptorLauncher v1 - reglages generaux",
"volume": 30,
"brightness": 25,
"wifi_ssid": "",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

// -----------------------------------------------------------------------------
// Profil hardware recommande pour RaptorLauncher V4
// Profil hardware recommande pour RaptorLauncher V1
// -----------------------------------------------------------------------------
#define SDK_SCREEN_WIDTH 320
#define SDK_SCREEN_HEIGHT 240
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

// -----------------------------------------------------------------------------
// Profil hardware recommande pour RaptorLauncher V4
// Profil hardware recommande pour RaptorLauncher V1
// -----------------------------------------------------------------------------
#define SDK_SCREEN_WIDTH 320
#define SDK_SCREEN_HEIGHT 240
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// tamadinov4.ino - ESP32 WROOM + CYD 2432S032R/2432S028 (ST7789) + LovyanGFX
// tamadinov1.ino - ESP32 WROOM + CYD 2432S032R/2432S028 (ST7789) + LovyanGFX
#include <stdint.h>

// ================== CONFIG RAPIDE (à modifier en premier) ==================
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
enum SfxId : uint8_t;

// =====================================================
// Pins RaptorLauncher V4
// Pins RaptorLauncher V1
// =====================================================
static constexpr int TFT_SCLK = 14;
static constexpr int TFT_MOSI = 13;
Expand Down Expand Up @@ -473,7 +473,7 @@ void requestLauncherOnNextBoot() {
prefs.putBool("boot_launcher", true);
prefs.end();

// Compat RaptorLauncher V4 OTA: retourne explicitement vers la partition launcher.
// Compat RaptorLauncher V1 OTA: retourne explicitement vers la partition launcher.
prefs.begin("raptor_boot", false);
String launcherLabel = prefs.getString("launcher", "");
prefs.end();
Expand Down
2 changes: 1 addition & 1 deletion RaptorLauncher_V0.8/RaptorLauncher_V0.8.ino
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ void setup() {
delay(200);

Serial.println();
Serial.println("=== RaptorLauncher V4 ===");
Serial.println("=== RaptorLauncher V1 ===");

displayInit();
storageInit();
Expand Down
2 changes: 1 addition & 1 deletion RaptorLauncher_V0.8/config.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#define APP_NAME "RaptorLauncher V4"
#define APP_NAME "RaptorLauncher V1"
#define APP_VERSION "0.1.0"

// =========================
Expand Down
2 changes: 1 addition & 1 deletion RaptorLauncher_V0.9/RaptorLauncher_V0.9.ino
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ void setup() {
delay(200);

Serial.println();
Serial.println("=== RaptorLauncher V4 ===");
Serial.println("=== RaptorLauncher V1 ===");

displayInit();
storageInit();
Expand Down
2 changes: 1 addition & 1 deletion RaptorLauncher_V0.9/config.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#define APP_NAME "RaptorLauncher V4"
#define APP_NAME "RaptorLauncher V1"
#define APP_VERSION "0.1.0"

// =========================
Expand Down
2 changes: 1 addition & 1 deletion RaptorLauncher_V1/RaptorLauncher_V0.9.ino
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ void setup() {
delay(200);

Serial.println();
Serial.println("=== RaptorLauncher V4 ===");
Serial.println("=== RaptorLauncher V1 ===");

displayInit();
storageInit();
Expand Down
2 changes: 1 addition & 1 deletion RaptorLauncher_V1/config.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#define APP_NAME "RaptorLauncher V4"
#define APP_NAME "RaptorLauncher V1"
#define APP_VERSION "0.1.0"

// =========================
Expand Down