Micro 130 DC Motor [D071]
https://www.youtube.com/watch?v=_L1XE6mWqqI
* Specs
Motor Size: 15 *20 MM
Motor Height: 29 MM (bearing set, excluding output shaft)
Output shaft: 2 MM
Output shaft length: 9 MM (starting from the front panel)
Voltage: 3 V-6V
Speed: 5000 RPM (3V); 10000RPM RPM(6V)
Weight: 14g
* Contents
This is a general-purpose motor, a weak magnetic motor, which can be started by solar energy, suitable for small toy car, using 3-6V DC voltage.
- Key Code
int motorPin = 9; //D9
void setup() {
pinMode(motorPin, OUTPUT); //PWM
Serial.begin(9600);
Serial.println("DC Motor Input Speed 0~255");
}
void loop() {
if(Serial.available())
{
int speed = Serial.parseInt();
Serial.println(speed);
analogWrite(motorPin,speed);
}
}
'3) Actuator > Motor' 카테고리의 다른 글
SG90 Camera Mount [B051] (0) | 2016.10.04 |
---|---|
Tower Pro SG90 Micro Servo (SG90) [D018] (0) | 2016.10.04 |
Helicopter Coreless DC Motor [S143] (0) | 2016.09.30 |
DC6~12V R030 Biaxial Double Axis DC Motor (R030) [D067] (0) | 2016.09.30 |
9376 Motor Miniatura (9376) [D019] (0) | 2016.09.30 |