Compilable version with wifi support - need to test

This commit is contained in:
2025-11-29 16:24:56 -06:00
parent 8bb08d2819
commit d6dfa5d681
9 changed files with 320 additions and 28 deletions

12
include/setup.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include "setup.hpp"
#include "BLE.hpp"
#include "WiFi.hpp"
void initialSetup() {
NimBLEAdvertising* pAdv = initBLE();
while (1) { // try to connect to wifi too.
BLEtick(pAdv);
vTaskDelay(pdMS_TO_TICKS(10));
}
}