Live robotics updates
A guide to Day 1 of the 2026 Robotics Summit & ExpoThe Robot ReportWhy robots still struggle to see the real worldThe Robot ReportApplication engineering for assembly systems is quietly becoming manufacturing’s biggest competitive edgeRobotics & Automation NewsFigure ramps up humanoid robot manufacturing at unprecedented speedRobotics & Automation NewsFigure partners with Catalyst Brands to deploy humanoid robots in logistics operationsRobotics & Automation NewsGreenpeace robot stages deepest-ever seabed protestRobotics & Automation NewsChina to assign digital ID numbers to humanoid robots for lifecycle trackingRobotics & Automation NewsCVPR 2026 fields 16,000+ paper submissions on technical advances in AIRobotics & Automation NewsVirginia Tech researchers control soft robotics with ‘AI’s cousin’: ‘Reservoir computing’Robotics & Automation NewsFesto introduces two-finger pneumatic gripper for cobot applicationsRobotics & Automation NewsA guide to Day 1 of the 2026 Robotics Summit & ExpoThe Robot ReportWhy robots still struggle to see the real worldThe Robot ReportApplication engineering for assembly systems is quietly becoming manufacturing’s biggest competitive edgeRobotics & Automation NewsFigure ramps up humanoid robot manufacturing at unprecedented speedRobotics & Automation NewsFigure partners with Catalyst Brands to deploy humanoid robots in logistics operationsRobotics & Automation NewsGreenpeace robot stages deepest-ever seabed protestRobotics & Automation NewsChina to assign digital ID numbers to humanoid robots for lifecycle trackingRobotics & Automation NewsCVPR 2026 fields 16,000+ paper submissions on technical advances in AIRobotics & Automation NewsVirginia Tech researchers control soft robotics with ‘AI’s cousin’: ‘Reservoir computing’Robotics & Automation NewsFesto introduces two-finger pneumatic gripper for cobot applicationsRobotics & Automation News
View all
Back
Arduino sample guide

roboda-sample-0081 - Servo Sweep 04

Move a hobby servo smoothly across its angle range.

Step-by-step build

Drive hobby servos for grippers, pan-tilt heads, and small robot joints.

1

Connect servo signal to servoPin.

2

Power the servo from a suitable supply and share GND.

3

Attach the Servo object to the pin.

4

Write a new angle every loop.

Important code parts

These are the sections learners should understand before changing the sketch.

#include <Servo.h>

Loads the standard Servo library.

joint.attach(servoPin)

Connects the Servo object to the chosen signal pin.

joint.write(angle)

Commands the servo position in degrees.

Pin mapping for this sample

Use this first table for the exact sample wiring, then use the board-family table when moving the sketch to another Arduino board.

Code nameSample pinModeConnect toNote
servoPinD9Servo signalServo signal wirePower the servo from a suitable 5V supply and share GND with Arduino.

Arduino board pin reference

The code names stay the same; only the physical board pins may change by family. Always confirm with the board silkscreen when using clones or special variants.

Board familyDigitalPWMAnalogI2CSPIInterrupt
Uno / Nano / Pro MiniDefault target for these samples.D0-D13D3, D5, D6, D9, D10, D11A0-A5A4 SDA, A5 SCLD10 SS, D11 MOSI, D12 MISO, D13 SCK / ICSPD2, D3
Mega 2560Best for many sensors or multiple serial ports.D0-D53D2-D13, D44-D46A0-A15D20 SDA, D21 SCLD50 MISO, D51 MOSI, D52 SCK, D53 SS / ICSPD2, D3, D18, D19, D20, D21
Leonardo / MicroUSB serial can behave differently because the main MCU handles USB.D0-D13D3, D5, D6, D9, D10, D11, D13A0-A5 plus extra analog-capable pins by boardD2 SDA, D3 SCLICSP headerD0, D1, D2, D3, D7
Nano Every / Uno WiFi Rev2Check the board package pinout for exact PWM labels.D0-D13PWM-marked digital pinsA0-A7 on Nano Every, A0-A5 on Uno WiFi Rev2SDA/SCL marked pinsICSP/SPI marked pinsUse pins supported by digitalPinToInterrupt()
Uno R4 Minima / Uno R4 WiFi5V logic board; still confirm shield/library compatibility.D0-D13PWM-marked digital pinsA0-A5SDA/SCL marked pinsICSP/SPI marked pinsUse digitalPinToInterrupt(pin)
Due3.3V logic only; protect pins from 5V sensors.D0-D53PWM-marked digital pinsA0-A11SDA/SCL and SDA1/SCL1SPI headerUse digitalPinToInterrupt(pin)
MKR / Nano 33 family3.3V logic. Some AVR-only libraries may need alternatives.Board-marked digital pinsPWM-marked pinsBoard-marked analog pinsSDA/SCL marked pinsSPI marked pinsUse digitalPinToInterrupt(pin)

Full sample code

/*
  Roboda verified Arduino sample 0081
  Feature: Servo Sweep
  Generated for online build, classroom practice, and hardware upload testing.
*/

#include <Servo.h>

Servo joint;
const byte servoPin = 9;
int angle = 0;
int delta = 4;

void setup() {
  joint.attach(servoPin);
}

void loop() {
  joint.write(angle);
  angle += delta;
  if (angle <= 0 || angle >= 180) {
    delta = -delta;
  }
  delay(15);
}

Teacher notes

  • Compile the sample before changing wiring or constants.
  • When changing boards, keep the code names the same and update only the pin number constants.
  • For 3.3V boards, level-shift 5V sensors and modules before connecting signal pins.
  • Use the first compiler error and the Roboda diagnostic suggestion before fixing later warnings.
Roboda support Leave a message

New messages appear in the Finite LiveChat Ops Android app.