62 lines
590 B
C++
Raw Normal View History

2022-02-02 21:15:28 +01:00
#include "KlappenSteuerung.h"
2022-02-02 21:15:28 +01:00
// Constructors/Destructors
//
2022-02-04 19:22:43 +01:00
/**
* @param pinA
* @param pinB
* @param pinPwm
* @param pinSense
* @param id
*/
KlappenSteuerung::KlappenSteuerung(int pinA, int pinB, int pinSense, int id)
2022-02-02 21:15:28 +01:00
{
setMotorPins(pinA , pinB);
SetId(id);
this->pinSense = pinSense;
2022-02-02 21:15:28 +01:00
}
KlappenSteuerung::~KlappenSteuerung()
{
}
2022-02-08 18:02:01 +01:00
void KlappenSteuerung::setupStatic(){
AnalogDigital::setupStatic();
}
2022-02-02 21:15:28 +01:00
//
// Methods
//
// Accessor methods
//
// Other methods
//
2022-02-02 21:15:28 +01:00
/**
* @param open
*/
void KlappenSteuerung::setOpen(bool open)
{
}
2022-02-02 21:15:28 +01:00