Added ESP-NOW task.

This commit is contained in:
Joe Kearney 2025-12-13 10:25:17 -06:00
parent e12ee17973
commit b998e37c3c
4 changed files with 222 additions and 0 deletions

View file

@ -48,6 +48,7 @@
#include <BLE.h>
#include <IR.h>
#include <WiFi.h>
#include <ESP-NOW.h>
#include "nvs_flash.h"
#include "HW_NeoPixels.h"
#include "Version.h"
@ -119,6 +120,8 @@ void app_main(void)
// Initialize the switches after SystemK, so xQueueEvents will have already been created.
Initialize_Switches();
Initialize_ESP_NOW();
KLOG_INFO(TAG, "Initialization complete.");
}