Files
miniature-town/main/main.c
Peter Siegmund 7faf53d9ba testing BLE
Signed-off-by: Peter Siegmund <developer@mars3142.org>
2025-05-18 17:01:40 +02:00

12 lines
264 B
C

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