จำนวนชิ้น | ส่วนลดต่อชิ้น | ราคาสุทธิต่อชิ้น |
{{(typeof focus_pdata.price_list[idx+1] == 'undefined')?('≥ '+price_row.min_quantity):((price_row.min_quantity < (focus_pdata.price_list[idx+1].min_quantity - 1))?(price_row.min_quantity+' - '+(focus_pdata.price_list[idx+1].min_quantity - 1)):price_row.min_quantity)}} | {{number_format(((focus_pdata.price_old === null)?focus_pdata.price:focus_pdata.price_old) - price_row.price,2)}} บาท | {{number_format(price_row.price,2)}} บาท |
คงเหลือ | ชุด |
จำนวน (ชุด) |
- +
|
ซื้อเลย หยิบลงตะกร้า ซื้อเลย หยิบลงตะกร้า คุณมีสินค้าชิ้นนี้ในตะกร้า 0 ชุด
ช่องทางสั่งซื้ออื่น ๆ
|
|
|
|
คุยกับร้านค้า | |
{{ size_chart_name }} |
|
หมวดหมู่ | บอร์ดขับมอเตอร์, ESC, Motor drive board |
สภาพ | สินค้าใหม่ |
เพิ่มเติม | |
สภาพ | สินค้ามือสอง |
เกรด | |
สถานะสินค้า | |
ระยะเวลาจัดเตรียมสินค้า | |
เข้าร่วมโปรโมชั่น | |
ข้อมูล |
น้ำหนัก
บาร์โค้ด
ลงสินค้า
อัพเดทล่าสุด
|
|
รายละเอียดสินค้า |
ตัวอย่างการทดลองสั่งงาน stepping motor 4 ตัว ตัวอย่าง Stepping motor ที่ใช้งานได้
รายละเอียดเพิ่มเติมการติดตั้ง ลงโปรแกรม และอุปกรณ์ที่ใช้ https://howtomechatronics.com/tutorials/how-to-setup-grbl-control-cnc-machine-with-arduino/ ตัวอย่าง Code สำหรับใช้งาน CNC Shield V3 สำหรับ Arduino UNO เบื้องต้น // The following is a simple stepper motor control program, #define EN 8 // Stepper motor enable terminal, active low #define X_DIR 5 // X axis stepper motor direction control #define Y_DIR 6 // y axis stepper motor direction control #define Z_DIR 7 // z axis stepper motor direction control #define X_STP 2 // x axis step control #define Y_STP 3 // y-axis step control #define Z_STP 4 // z axis step control / * // Function: step function: control the direction and step number of stepper motor. // Parameters: dir direction control, dirPin corresponds to the DIR pin of the stepper motor, stepperPin corresponds to the step pin of the stepper motor, steps // No return value * / void step (boolean dir, byte dirPin, byte stepperPin, int steps) { digitalWrite (dirPin, dir); delay (50); for (int i = 0; i < steps; i ++) { digitalWrite (stepperPin, HIGH); delayMicroseconds (800); digitalWrite (stepperPin, LOW); delayMicroseconds (800); } } void setup () {// Set the IO pins used by the stepper motor as output pinMode (X_DIR, OUTPUT); pinMode (X_STP, OUTPUT); pinMode (Y_DIR, OUTPUT); pinMode (Y_STP, OUTPUT); pinMode (Z_DIR, OUTPUT); pinMode (Z_STP, OUTPUT); pinMode (EN, OUTPUT); digitalWrite (EN, LOW); } void loop () { step (false, X_DIR, X_STP, 200); // X axis motor reverses 1 turn, 200 steps is one turn step (false, Y_DIR, Y_STP, 200); // The y-axis motor reverses 1 turn, 200 steps is one turn step (false, Z_DIR, Z_STP, 200); // Z axis motor reverses 1 turn, 200 steps is one turn delay (1000); step (true, X_DIR, X_STP, 200); // X-axis motor rotates forward one turn, 200 steps is one turn step (true, Y_DIR, Y_STP, 200); // y-axis motor rotates forward one revolution, 200 steps is one revolution step (true, Z_DIR, Z_STP, 200); // The z-axis motor rotates forward one revolution, 200 steps is one revolution delay (1000); } CNC Shield V3 for Arduino Uno The Arduino CNC Shield makes it easy to get your CNC projects up and running in a few hours. It uses opensource firmware on Arduino to control 4 stepper motors using 4 A4988 Stepper drivers , with this shield and the Arduino you can build all kinds of robotics or CNC projects including CNC routers,laser cutters and even pick&place machines.
Features
GRBL 0.8c compatible. (Open source firmware that runs on an Arduino UNO that turns G-code commands into stepper signalshttps://github.com/grbl/grbl)
4-Axis support (X, Y, Z , A-Can duplicate X,Y,Z or do a full 4th axis with custom firmware using pins D12 and D13)
2 x End stops for each axis (6 in total)
Spindle enable and direction
Coolant enable
Uses removable Pololu A4988 compatible stepper drivers. (A4988, DRV8825 and others)
Jumpers to set the Micro-Stepping for the stepper drivers. (Some drivers like the DRV8825 can do up to 1/32 micro-stepping )
Compact design.
Stepper Motors can be connected with 4 pin molex connectors.
Runs on 12-36V DC. (At the moment only the Pololu DRV8825 drivers can handle up to 36V so please consider the operation voltage when powering the board.) Information Support:
![]() |
|
เงื่อนไขอื่นๆ |
|
|
Tags |
หน้าที่เข้าชม | 2,072,435 ครั้ง |
ผู้ชมทั้งหมด | 1,333,161 ครั้ง |
ร้านค้าอัพเดท | 6 ก.ย. 2568 |