이하늘gledel임동교
Created August 29, 2017 © GPL3+

inoLab : Dual motor

This project was made by Innovation Lab at Bongilcheon High School.

BeginnerProtip30 minutes32
inoLab : Dual motor

Story

Read more

Code

Untitled file

Arduino
int AIA = 5;   
int AIB = 6;   
int BIA = 9;
int BIB = 10;
 
void setup() {
  pinMode(AIA, OUTPUT); 
  pinMode(AIB, OUTPUT);
  Serial.begin(9600);
 
}
 
void loop() {
  analogWrite(AIA, 200);
  analogWrite(AIB, 0);
  analogWrite(BIB, 200);
  analogWrite(BIA, 0);
} 

Credits

이하늘
5 projects • 3 followers
Contact
gledel
100 projects • 116 followers
Looking back on my childhood, I was happy when I was making something and I was proud of myself. "Making is instinct!"
Contact
임동교
0 projects • 12 followers
Contact

Comments

Please log in or sign up to comment.