1
0

add P4 & P5

This commit is contained in:
2025-11-24 15:44:12 +01:00
parent bd24f1fb79
commit f6fa6d94ce
1120 changed files with 576492 additions and 83 deletions

27
P5_SETR2/Core/Inc/Tasks.h Normal file
View File

@@ -0,0 +1,27 @@
/*
* Tasks.h
*
* Created on: Nov 17, 2025
* Author: jomaa
*/
#ifndef INC_TASKS_H_
#define INC_TASKS_H_
#include "main.h"
#include "global.h"
#include "Sensors.h"
int WifiServer(void);
void CreateTasks();
void CreateSerialObjects();
void TaskSensors(void* pArg);
void TaskWebServer(void* pArg);
void TaskLed(void* pArg);
void QueueLed(char ch);
SensorData_t GetSensors();
#endif /* INC_TASKS_H_ */