starting with led configuration

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2025-05-17 22:05:39 +02:00
parent ed7a23256c
commit 82f0b3f02b
6 changed files with 86 additions and 22 deletions

View File

@@ -1,6 +1,11 @@
#include "led_matrix.h"
#include "remote_control.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
void app_main(void)
{
init_led();
xTaskCreatePinnedToCore(led_matrix_init, "led_matrix", configMINIMAL_STACK_SIZE * 2, NULL, 5, NULL, 1);
xTaskCreatePinnedToCore(ble_init, "remote_control", configMINIMAL_STACK_SIZE * 2, NULL, 5, NULL, 1);
}