Open PJ789 opened 2 years ago
When using an AVR based board, I usually initiate servo with the following;-
radar_servo.attach(RADAR_SERVO_POSITION_PIN,500,2360); // NANO attaches the servo on pin 9 to the servo object
When migrating to Pico I found those parameters send the servo crazy, and instead simply using the following worked;-
radar_servo.attach(RADAR_SERVO_POSITION_PIN); // PICO attaches the servo on pin 9 to the servo object
When using an AVR based board, I usually initiate servo with the following;-
When migrating to Pico I found those parameters send the servo crazy, and instead simply using the following worked;-