久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

arduino學(xué)習(xí)筆記17-步進(jìn)電機(jī)試驗(yàn)前幾天我也試驗(yàn)了一下,,用的是28BYJ-48 Stepper Motor 12V+ULN2003APG改了改一個(gè)代碼,,現(xiàn)在的效果是電位計(jì)控制正反轉(zhuǎn)

 寬寬r700 2016-09-21
  • /*
  • This program drives a unipolar or bipolar stepper motor.
  • The motor is attached to digital pins 8 - 11 of the Arduino.

  • Created 11 Mar. 2007
  • Modified 30 Nov. 2009
  • by Tom Igoe

  • */
  • #include <Stepper.h>

  • const int stepsPerRevolution = 64;  // change this to fit the number of steps per revolution for your motor
  • // initialize the stepper library on pins 8 through 11:
  • Stepper myStepper(stepsPerRevolution, 8,9,10,11);   
  • const int aInPin=A0;
  • int val;

  • void setup() {
  •   // set the speed at 60 rpm:
  •   myStepper.setSpeed(200);
  •   // initialize the serial port:
  •   Serial.begin(9600);
  • }

  • void loop() {
  •   val=analogRead(aInPin);
  •   val=map(val,0,1023,0,99);
  •   Serial.println(val);
  •   // step one revolution  in two direction:
  •   if(val>50){
  •     Serial.println("clockwise");
  •     //原library是整步,整步走的角度是半步走的角度的兩倍,半步走的聲音比較小,平穩(wěn)些,啟動(dòng)時(shí)最好是半步的走比較穩(wěn)定
  •     //022中l(wèi)ibrary修改為半步模式不成功,???FUCK
  •     //四拍運(yùn)行時(shí)步距角為θ=360度/(revolution*4)(俗稱整步),,八拍運(yùn)行時(shí)步距角為θ=360度/(revolution*8)(俗稱半步)
  •     myStepper.step(stepsPerRevolution/2);//
  •     delay(500);
  •   }
  •   else{
  •     // step one revolution in the other direction:
  •     Serial.println("counterclockwise");
  •     myStepper.step(-stepsPerRevolution/2);
  •     delay(500);
  •   }
  • }
    • 本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點(diǎn),。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào),。
      轉(zhuǎn)藏 分享 獻(xiàn)花(0

      0條評(píng)論

      發(fā)表

      請(qǐng)遵守用戶 評(píng)論公約

      類似文章 更多