德源科技 
德源科技德源科技
公司簡介訂購方式匯款確認檔案下載 聯絡我們保固說明訂單查詢討論區
電子郵件:

密碼:

忘記密碼
加入會員
>  首頁 | >RS工具箱、工具櫃 | >原廠 Arduino® | >特殊服務設計 | >轉接座及轉接板/麵包板 | >開發板/燒錄器/模擬器 | >相容 For Arudino® 週邊及配件 | >D-Robotics地瓜 RDK開發板 系列 | >OKdo系列 | >Saleae 系列 | >Adafruit 系列 | >ArduCam 系列 | >Camera 攝像頭 | >ROCK 系列 | >Debix系列開發板 | >Raspberry Pi 樹莓派 | >WalnutPi 核桃派 | >Banana Pi 香蕉派 | >BeagleBone 狗骨頭 | >M5Stack系列 | >Micro:bit (BBC)系列 | >NVIDIA Jetson Nano系列 | >Pololu 系列 | >Pycom 系列 | >Seeed 系列 | >Sparkfun 系列 | >WeMos 系列 | >傳感器 | >Cubieboard/CubieTruck系列 | >Firefly 系列 | >Microduino系列 | >OpenMV 系列 | >Orange Pi 香橙派 | >PCB板 | >PLC 系列 | >Robot 機器人 | >UDOO 系列 | >RedBearLab 系列 | >LattePanda系列 | >LittleBits 系列 | >Libelium 系列 | >Luxonis 相機系列 | >PCduino | >RobotElectronics 系列 | >MageDok 顯示屏 | >LCD/LCM/TFT/LVDC | >Dimension Engineer 系列 | >通訊模組 | >影音器材(含轉換器) | >線材/連結器/轉換器 | >FNIRSI 示波器 | >測量儀器 | >馬達/馬逹控制器/電源模組 | >其他 | >焊接/維修工具 | >IC零件 | >LED燈-裝飾燈 | >工作站迷你電腦 mini PC | >擴大器 | >雕刻機 | >電池 | >電腦周邊 | >AI 顯卡 | >停售商品
  首頁 » 商品目錄 » 相容 For Arudino® 週邊及配件 » 222113985
商品搜尋 進階
 |  購物車內容  |  結帳   
商品分類
  For Arduino® book 書
  For Arduino® LCD 屏
  For Arduino® RGB LED模組
  For Arduino® SD卡模組
  For Arduino® 傳感器模塊
  For Arduino® 套件/套餐
  For Arduino® 學習套件
  For Arduino® 按鍵 按鈕模塊 搖桿
  For Arduino® 控制板
  For Arduino® 擴展板
  For Arduino® 繼電器
  For Arduino® 車
  For Arduino® 電機 馬達 驅動
  Makeblock mBot 系列
  MiCOKit 銀爾達
  NodeMcu Lua系列
  WRTnode系列
  電源模塊
  For Arduino® 外殼/壓克力板/麵包板/杜邦線/配件
Arduino
Pololu
Seeed
Sparkfun
robot-electronics
dimensionengineering
libelium
adafruit
udoo
redbearlab
Arducam
goembed
Saleae
okdo
d-robotics
服務台
公司簡介
退換貨服務
訂購方式
聯絡我們
匯款確認
[<< 前一頁]  瀏覽相同分類產品 301 / 451  [下一頁 >>]
*L298P Motor Shield 2A大電流 雙路馬達驅動 擴展板 H橋 智能小車 For Arduino®
價格(含稅)NT$356
運費NT$60
條碼222113985
產品說明0

商品圖片

       L298P Shield直流電機驅動器採用LGS公司優秀大功率電機專用驅動芯片L298P,可直接驅動2個直流電機,驅動電流達2A,電機輸出端採用8只高速肖特基二極管作為保護。疊層設計可直接插接到Arduino上,使用更加方便!

 

【模塊參數】:

 

 

    ※電機驅動電壓:外部輸入3-35V 內部輸入:6-12V

 

 

    ※邏輯端消電流:<30MA

 

 

    ※驅動電流:2A

 

 

    ※驅動峰值電流:4A

 

 

    ※最大功率:25W

 

    ※工作溫度:-25℃-130℃

 

可以直接插在ArduinoUNO、leonardo、mega2560等板上直接使用,不進行電流檢測的情況下,程序佔用主板四個引腳:

 

  •     PWMA:D4(~)引腳
  •     DIRA:D5引腳
  •     PWMB:D6(~)引腳
  •     DIRB:D7引腳
邏輯控制真值表如下:

【Arduino UNO 參考代碼如下】:

int E1 = 4;  //PWMA

int M1 = 5;  //DIRA

int E2 = 6;  //PWMB             

int M2 = 7;  //DIRB

int Val = 0;

int ChangeValue = 20;   //the speed value ,changevalue from 0-255

void setup()

{

      pinMode(M1, OUTPUT); 

      pinMode(M2, OUTPUT);

}

void foward()

{

      digitalWrite(M1,LOW);         

      analogWrite(E1, Val);   //the speed value of motorA is 20
 
      digitalWrite(M2,LOW);

      analogWrite(E2, Val);   //the speed value of motorB is 20
 
      Val = Val + ChangeValue;
 
      if (Val == 0 || Val == 255)

     {

           ChangeValue = -ChangeValue;

     }

     delay(100);

 }

void back()

{

     digitalWrite(M1,HIGH);     

     analogWrite(E1, Val);   //PWM調速
 
     digitalWrite(M2,HIGH);

     analogWrite(E2, Val);   //PWM調速
 
     Val = Val + ChangeValue;
 
     if (Val == 0 || Val == 255)
     {

         ChangeValue = -ChangeValue;

     }

     delay(100);
}
 
void loop()
{

     foward();

     delay(500);

     back();

     delay(500);

}

相關文件

 

問與答

目前沒有任何商品問答!
本商品上架日期:2014-05-19.
評價
建議購買的商品清單!可以參考看看喔
DFR原廠 LED Keypad Shield 數碼管擴展板 (DFR382)  For Arduino®
DFR原廠 LED Keypad Shield 數碼管擴展板 (DFR382) For Arduino®
●多功能擴展板 基礎學習套件單片機開發板 Multi-Function Shield For Arduino®
●多功能擴展板 基礎學習套件單片機開發板 Multi-Function Shield For Arduino®
●(免焊)DC公頭 綠色端子轉接頭 5.5*2.1 監控攝像電源轉接端 穩壓電源DC頭
●(免焊)DC公頭 綠色端子轉接頭 5.5*2.1 監控攝像電源轉接端 穩壓電源DC頭
Motor Shield L293D x2 馬達驅動模組 共4路H橋驅動電路可用For Arduino®
Motor Shield L293D x2 馬達驅動模組 共4路H橋驅動電路可用For Arduino®
●9V 電池扣 + 轉接頭 DC公頭 (焊接好)
●9V 電池扣 + 轉接頭 DC公頭 (焊接好)
●UNO改進板 Freaduino UNO V2.2(ATmega328)For Arduino®
●UNO改進板 Freaduino UNO V2.2(ATmega328)For Arduino®
<%CART_CACHE%>
查詢訂單狀態
 
請輸入您的訂單編號
商品通知狀態 更多
通知*L298P Motor Shield 2A大電流 雙路馬達驅動 擴展板 H橋 智能小車 For Arduino®
更新時通知我
推薦給朋友
 
推薦這個商品給朋友
145 - Table '.\commerce\whos_online' is marked as crashed and should be repaired

select count(*) as count from whos_online where session_id = '90c13c655e4442a0ffaa6e3b8cdf35ab'

[TEP STOP]