arduino-toy-projects/arduino_05/src/main.cpp
2021-04-28 21:58:03 +02:00

19 lines
289 B
C++

#include <Arduino.h>
#include <Servo.h>
#define SERVO_PIN 3
Servo servo;
const byte potPin = PIN_A1;
void setup() {
servo.attach(SERVO_PIN);
}
void loop() {
int potVal = analogRead(potPin);
int angle = map(potVal, 0, 1023, 0, 179);
servo.write(angle);
delay(15);
}