first commit

This commit is contained in:
Dana Markova
2025-07-28 13:21:36 +03:00
commit 0de214c9a1
547 changed files with 287132 additions and 0 deletions

14
utils/pid.h Normal file
View File

@ -0,0 +1,14 @@
#pragma once
struct PID_Data
{
float Min, Max;
struct
{
float Min, Max;
float C;
}P,I,D;
float i = 0;
};
float PID_Update(float Value, float Current, PID_Data& Coef, float de);