Added fan support, but calculation still needs to be verified!

This commit is contained in:
Christian Lind Vie Madsen
2025-10-14 14:25:20 +02:00
parent f8451ba27c
commit aaeb82d199
2 changed files with 33 additions and 7 deletions

View File

@@ -18,6 +18,13 @@ typedef struct {
};
float R_th_MaxFan; // In case you need to emulate a fan
union{
float C_th;
float C_th_MinFan;
};
float C_th_MaxFan;
// Dynamic
float temperature;
@@ -30,7 +37,6 @@ typedef struct {
float power;
float ambientTemp;
float C_th; // Thermal capacity
// Dynamic
float prev_time;