Week 10. Output Devices

Servo SG90

I connected a Servo SG90 to the pcb i made in Week 8

Here is the Servo:

What to connect where:

Control Signal -> GPIO6 (yellow wire)

VCC -> 3V3 (red wire)

GND -> GND (brown wire)

Code

Error

I first tried the public code through File->Examples->Servo->Sweep but it gave an error:

Success

So I installed ESP32Servo by Kevin Harrington, John K. Bennett and checked the library description. The only changes I had to make after was under setup()

Spin code:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
#include <ESP32Servo.h>

Servo myservo;

int pos = 0;

void setup() {
  myservo.setPeriodHertz(50);     // 50Hz is the standard
  myservo.attach(6, 500, 2500);   // connected to GPIO6, min max pulse width in µs
}

void loop() {
  for (pos = 0; pos <= 180; pos += 1) {
    myservo.write(pos);
    delay(15);
  }
  for (pos = 180; pos >= 0; pos -= 1) {
    myservo.write(pos);
    delay(15);
  }
}

Video:

Built with Hugo
Theme Stack designed by Jimmy