2025-11-29 16:24:56 -06:00
|
|
|
#include "setup.hpp"
|
|
|
|
|
#include "BLE.hpp"
|
|
|
|
|
#include "WiFi.hpp"
|
|
|
|
|
|
|
|
|
|
void initialSetup() {
|
|
|
|
|
NimBLEAdvertising* pAdv = initBLE();
|
|
|
|
|
|
2025-12-18 22:08:07 -06:00
|
|
|
while (!BLEtick(pAdv)) {
|
2025-11-29 16:24:56 -06:00
|
|
|
vTaskDelay(pdMS_TO_TICKS(10));
|
|
|
|
|
}
|
|
|
|
|
}
|