Finished Firmware for Vacum

This commit is contained in:
AlexanderHD27
2025-01-02 03:55:45 +01:00
parent ad61e7e9b7
commit 0bb125fad9
39 changed files with 1701 additions and 2 deletions

View File

@@ -0,0 +1,28 @@
#pragma once
#include "pinConfig.hpp"
#include "FreeRTOS.h"
#include "task.h"
#include "semphr.h"
void vInterruptionTaskFn(void *pvParameters);
void vButtonTaskFn(void *pvParameters);
class VacumControl {
private:
bool state = false;
xSemaphoreHandle vacumMutex;
xSemaphoreHandle interruptionSemaphore;
xTaskHandle interruptionTask;
xTaskHandle buttonTask;
public:
VacumControl();
void initVacumPins();
void setState(bool on);
void interruptionTaskFn();
void buttonTaskFn();
};