mirror of
https://gitlab.com/fabinfra/fabhardware/absaugungsklappensteuerung.git
synced 2025-03-12 23:01:52 +01:00
60 lines
551 B
C++
60 lines
551 B
C++
#include "KlappenSteuerung.h"
|
|
|
|
// Constructors/Destructors
|
|
//
|
|
|
|
KlappenSteuerung::KlappenSteuerung()
|
|
{
|
|
}
|
|
|
|
KlappenSteuerung::~KlappenSteuerung()
|
|
{
|
|
}
|
|
|
|
//
|
|
// Methods
|
|
//
|
|
|
|
|
|
// Accessor methods
|
|
//
|
|
|
|
|
|
// Other methods
|
|
//
|
|
|
|
|
|
/**
|
|
* @param pinA
|
|
* @param pinB
|
|
* @param pinPwm
|
|
* @param pinSense
|
|
*/
|
|
KlappenSteuerung::KlappenSteuerung(int pinA, int pinB, int pinPwm, int pinSense)
|
|
{
|
|
}
|
|
|
|
|
|
/**
|
|
*/
|
|
void KlappenSteuerung::setup()
|
|
{
|
|
}
|
|
|
|
|
|
/**
|
|
*/
|
|
void KlappenSteuerung::loop()
|
|
{
|
|
}
|
|
|
|
|
|
/**
|
|
* @param open
|
|
*/
|
|
void KlappenSteuerung::setOpen(bool open)
|
|
{
|
|
}
|
|
|
|
|