Skip to content

Instantly share code, notes, and snippets.

View hazardemircan's full-sized avatar
🧠
Mastering...

hazardemircan

🧠
Mastering...
View GitHub Profile
@hazardemircan
hazardemircan / 4-esc-arduino.ino
Created May 5, 2021 22:01
Control 4 brushless motors with arduino
#include <Servo.h>
//Create the 4 esc objects
Servo esc1;
Servo esc2;
Servo esc3;
Servo esc4;
//Esc pins
int escPin1 = 8;