initial commit

This commit is contained in:
Uwe Jakobeit
2026-03-30 09:41:19 +02:00
parent 7928ce3239
commit 00f8e9a751
76 changed files with 8341 additions and 1 deletions

18
app/pwm.cpp Normal file
View File

@@ -0,0 +1,18 @@
// todo: create, import file header
#include "pwm.h"
PWM::PWM(double cycleTime_Min,double cycleTime_Max)
{
m_cycle = 0.0;
m_out = 0.0;
m_cycleTime = 0.0;
m_cycleTime_Min = cycleTime_Min;
m_cycleTime_Max = cycleTime_Max;
}
bool PWM::step(double setValue,double samplingTime)
{
bool output_bool;
return output_bool;
}