標(biāo)題: 三項(xiàng)六線步進(jìn)電機(jī)怎么接線?那四根現(xiàn)有什么用途?怎么區(qū)分每一根線? [打印本頁]

作者: 咻咻修    時間: 2018-7-21 11:00
標(biāo)題: 三項(xiàng)六線步進(jìn)電機(jī)怎么接線?那四根現(xiàn)有什么用途?怎么區(qū)分每一根線?
三項(xiàng)六線步進(jìn)電機(jī)怎么接線?、?那四根現(xiàn)有什么用途??   怎么區(qū)分每一根線????

15532df5e0fe9925580327ea38a85edf8cb171f3.jpg (56.34 KB, 下載次數(shù): 36)

15532df5e0fe9925580327ea38a85edf8cb171f3.jpg

作者: wc86110    時間: 2018-7-21 13:40
店家就沒資料?
作者: dzljp    時間: 2018-7-21 13:59
兩相6線吧!


作者: angmall    時間: 2018-7-21 14:56
單片機(jī)驅(qū)動三相步進(jìn)電機(jī)驅(qū)動電路圖
由于步進(jìn)電機(jī)轉(zhuǎn)子有一定的慣性以及所帶負(fù)載的慣性,故步進(jìn)電機(jī)的工作過程中不能及時的啟動和停止,在啟動時應(yīng)慢慢的加速到預(yù)定速度,在停止前應(yīng)逐漸減速到停止,否則,將產(chǎn)生失步現(xiàn)象。 三相步進(jìn)電機(jī)的三相六拍工作方式,正轉(zhuǎn)的繞組通電順序:A、AB、B、BC、C、CA、A,反轉(zhuǎn)的通電順序:A、AC、C、CB、B、BA、B、A。 步進(jìn)電機(jī)的驅(qū)動控制問題可總結(jié)為兩點(diǎn)


  1. #include "reg52.h"
  2. unsigned char code FFW[8]={0xfe,0xfc,0xfd,0xf9,0xfb,0xf3,0xf7,0xf6};
  3. void delay(unsigned int t);
  4. //Motor
  5. sbit F1 = P1^0;
  6. sbit F2 = P1^1;
  7. sbit F3 = P1^2;
  8. sbit F4 = P1^3;
  9. ///////////////////////////////////////
  10. //步進(jìn)電機(jī)驅(qū)動
  11. void motor_ffw()
  12. {
  13.         unsigned char i;
  14.         for (i=0; i<8; i++) //一個周期轉(zhuǎn)30度
  15.         {
  16.                 P1 = FFW[i]&0x1f; //取數(shù)據(jù)
  17.                 delay(5); //調(diào)節(jié)轉(zhuǎn)速
  18.         }
  19. }
  20. void delay(unsigned int t)
  21. {
  22.         unsigned int k;
  23.         while(t--)
  24.         {
  25.                 for(k=0; k<60; k++)
  26.                 { }
  27.         }
  28. }
  29. main()
  30. {
  31.         while(1)
  32.         {
  33.                 motor_ffw();
  34.         }
  35. }
復(fù)制代碼


單片機(jī)驅(qū)動三相步進(jìn)電機(jī)驅(qū)動電路圖

三相六線步進(jìn)電機(jī).jpg (60.67 KB, 下載次數(shù): 45)

三相六線步進(jìn)電機(jī).jpg





歡迎光臨 (http://www.torrancerestoration.com/bbs/) Powered by Discuz! X3.1