Introduction
This 130 DC motor has an integrated transistor built in to the board, eliminating the need for a motor driver. Use PWM to control it for all your DIY project needs. It uses the 3 pin "gravity" interface saving lots of messy wiring.Documents
Shipping List
We will use Arduino to control module speed.
Copy the sample code, and paste it in the Arduino IDE
/* 130 DC Motor
by DFRobot <https:www.dfrobot.com>
*/
int motorPin = 3; //Motor drive pin D3
int motorSpeed; //Define motor speed
void setup()
{
Serial.begin(9600);
}
void loop()
{
for(motorSpeed = 0 ; motorSpeed <= 255; motorSpeed+=5)
{
analogWrite(motorPin, motorSpeed); //PWM speed control
delay(30);
}
for(motorSpeed = 255 ; motorSpeed >= 0; motorSpeed-=5)
{
analogWrite(motorPin, motorSpeed); //PWM speed control
delay(30);
}
}
ชำระเงินค่าสินค้าโดยการโอนเงินเข้าบัญชีธนาคาร KBANK, SCB, BBL,TMB
กรุณาเก็บหลักฐานการโอนเงินของท่านไว้เพื่อแจ้งการชำระเงินด้วยค่ะ
ท่านสามารถแจ้งการชำระเงินผ่านระบบอัตโนมัติได้โดย Click Link ข้างล่างค่ะ
https://www.arduitronics.com/informpayment
หน้าที่เข้าชม | 15,393,408 ครั้ง |
ผู้ชมทั้งหมด | 5,896,486 ครั้ง |
เปิดร้าน | 21 พ.ค. 2556 |
ร้านค้าอัพเดท | 16 ก.ย. 2568 |