EduIntro
EduIntro copied to clipboard
ServoMotor:: write did not return a value
int ServoMotor::write(uint8_t _value)
{
if (!_attached) {
attach(pin);
_attached = true;
}
Servo::write(_value);
}
Servo:: Write does not return a value, so should it also be set to void here?