Skip to content

Instantly share code, notes, and snippets.

View alexbertis's full-sized avatar

Alejandro Bertinelli alexbertis

View GitHub Profile
@alexbertis
alexbertis / ejemplo_servo.ino
Created May 4, 2019 16:16
Código para controlar un motor Servo en Arduino
#include <Servo.h>
Servo miServo;
void setup() {
// put your setup code here, to run once:
miServo.attach(10);
}
void loop() {