60 lines
551 B
C++
Raw Normal View History

2022-02-02 21:15:28 +01:00
#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)
{
}