Skip to content

Instantly share code, notes, and snippets.

View emil01's full-sized avatar

Emil Varughese emil01

View GitHub Profile
#include <SoftwareSerial.h>
#include <Servo.h>
Servo myservo1, myservo2, myservo3;
void setup()
{
myservo1.attach(9);
myservo2.attach(10);
myservo3.attach(11);
#include <SoftwareSerial.h>
#include <Servo.h>
Servo myservo1, myservo2, myservo3;
int bluetoothTx = 2;
int bluetoothRx = 3;
SoftwareSerial bluetooth(bluetoothTx, bluetoothRx);
void setup()