Harsh Dethe
Published © CC BY-NC-SA

Make Your Own Micro Actuator

Micro Actuators can be used to make small indoor RC planes, Micro robotics and much more.

BeginnerFull instructions provided1 hour4,120
Make Your Own Micro Actuator

Things used in this project

Hardware components

UTSOURCE Electronic Parts
UTSOURCE Electronic Parts
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Code

Code snippet #1

Plain text
int en = 11;
int R = 10;int L = 9;void setup(){pinMode(L, OUTPUT);pinMode(R, OUTPUT);pinMode(en, OUTPUT);}void loop(){
analogWrite(en,200); digitalWrite(R,HIGH);
delay(1000); 
digitalWrite(R,LOW);analogWrite(en,200); digitalWrite(L,HIGH); 
delay(1000); 
digitalWrite(L,LOW); 
}

Credits

Harsh Dethe

Harsh Dethe

30 projects • 67 followers
Electronics hobbyist, AI Enthusiast. I like to play with technology.

Comments