如何讓步進电机在程序尾端 加sleep讓A4988睡眠的程式碼?-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1328|回复: 0

[过期] 如何讓步進电机在程序尾端 加sleep讓A4988睡眠的程式碼?

[复制链接]
发表于 2021-8-24 14:01 | 显示全部楼层 |阅读模式
本帖最后由 slivas2001 于 2021-8-24 17:12 编辑

新手求助
我的設置是 Arduino Uno+步進电机+A4988
要如何讓電機在一個程序結束後進行睡眠狀態,待Reset之後再重新運行程序?
以下是我的程序碼,不知道該如何添加sleep指令,請高手幫忙~

// defines pins numbers
const int stepPin = 3;
const int dirPin = 4;
const int sleepPin = 5;   // Sleep

void setup() {
  // Sets the two pins as Outputs
  pinMode(stepPin,OUTPUT);
  pinMode(dirPin,OUTPUT);
  pinMode(sleepPin,OUTPUT);

    digitalWrite(dirPin,HIGH); // Enables the motor to move in a particular direction
  // Makes 200 pulses for making one full cycle rotation
  for(int x = 0; x < 1200; x++) {
    digitalWrite(stepPin,HIGH);
    delayMicroseconds(500);
    digitalWrite(stepPin,LOW);
    delayMicroseconds(500);


  }
  delay(1000);
}
void loop() {

}


您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-11-29 01:31 , Processed in 0.073292 second(s), 16 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表