Merge branch 'main' into ESP-NOW_experiments

This commit is contained in:
Joe Kearney 2026-01-10 18:08:48 -06:00
commit 32a0681435
33 changed files with 529 additions and 61 deletions

View file

@ -2,9 +2,9 @@
* This program source code file is part of the KTag project, a DIY laser tag
* game with customizable features and wide interoperability.
*
* 🛡 <https://ktag.clubk.club> 🃞
* 🛡 <https://ktag.clubk.club> 🃞
*
* Copyright © 2024-2025 Joseph P. Kearney and the KTag developers.
* Copyright © 2024-2026 Joseph P. Kearney and the KTag developers.
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License as published by the Free

View file

@ -2,9 +2,9 @@
* This program source code file is part of the KTag project, a DIY laser tag
* game with customizable features and wide interoperability.
*
* 🛡 <https://ktag.clubk.club> 🃞
* 🛡 <https://ktag.clubk.club> 🃞
*
* Copyright © 2024-2025 Joseph P. Kearney and the KTag developers.
* Copyright © 2024-2026 Joseph P. Kearney and the KTag developers.
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License as published by the Free

View file

@ -2,7 +2,7 @@
* This program source code file is part of the KTag project, a DIY laser tag
* game with customizable features and wide interoperability.
*
* 🛡 <https://ktag.clubk.club> 🃞
* 🛡 <https://ktag.clubk.club> 🃞
*
* Copyright © 2024-2026 Joseph P. Kearney and the KTag developers.
*

View file

@ -48,6 +48,7 @@
#include <BLE.h>
#include <IR.h>
#include <WiFi.h>
#include <Console.h>
#include <ESP-NOW.h>
#include "nvs_flash.h"
#include "HW_NeoPixels.h"
@ -83,6 +84,8 @@ void app_main(void)
KLOG_ERROR(TAG, "Error initializing NVS: %s", esp_err_to_name(ret));
}
Initialize_Console();
Initialize_SPIFFS();
Wait_For_System_Event(SYS_SPIFFS_READY, "Timeout initializing SPIFFS!", INITIALIZATION_TIMEOUT_IN_ms);