examples/07.Advanced/ServoKnob/ServoKnob.ino:39:1: error: 'ServoOut' does not name a type; did you mean 'error_t'?
ServoOut servo(9);
^~~~~~~~
error_t
examples/07.Advanced/ServoKnob/ServoKnob.ino: In function 'void step()':
examples/07.Advanced/ServoKnob/ServoKnob.ino:46:10: error: 'servo' was not declared in this scope
osc >> servo;
^~~~~
We need to figure out what to do with this:
There is a specific servo library for ESP32 https://dronebotworkshop.com/esp32-servo/
However this would include a dependency.
Do we really need to support servo motors in the core Plaquette library?