idfhack/main/tasks.h
2025-07-06 13:23:47 +02:00

14 lines
256 B
C

#ifndef TASKS_H
#define TASKS_H
/*
* This file exports all the individual tasks, avoiding tons of semi-empty headers.
*/
#define LED_PIN 2
#define RATE_PER_S 10
#define BLINK_DELAY (1000 / 2 / RATE_PER_S)
void task_blink(void *pvParams);
#endif