My problem now is that i want to pass the ServoInputPin object to my class as reference or to create it dynamicly in my class. Something like that:
Declaration described in documentation:
ServoInputPin<2> servo;
MyMotor.h
class MyMotor
{
private:
ServoInputPin<>* MotorInput;
}
But he ServoInputPin declaration is not a "normal" class for me as beginner What does the "<uint8_t>" mean after the class name? And is it possible to plass the "servo" object to a class?