닫기
전체카테고리
  • 반도체/수동소자
    반도체/수동소자
  • 임베디드하드웨어
    임베디드하드웨어
  • 교육용키트
    교육용키트
  • 센서모듈
    센서모듈
  • 입출력모듈
    입출력모듈
  • 전원/파워/배터리
    전원/파워/배터리
  • 기타 하드웨어
    기타 하드웨어
  • 특가상품/리퍼상품
    특가상품/리퍼상품
  • 반도체/수동소자
    반도체/수동소자
  • 임베디드하드웨어
    임베디드하드웨어
  • 교육용키트
    교육용키트
  • 센서모듈
    센서모듈
  • 입출력모듈
    입출력모듈
  • 전원/파워/배터리
    전원/파워/배터리
  • 기타 하드웨어
    기타 하드웨어
  • 특가상품/리퍼상품
    특가상품/리퍼상품
아두이노 L293D 모터드라이버 쉴드 (1A Motor Shield For Arduino) 이미지 확대 보기
  • 아두이노 L293D 모터드라이버 쉴드 (1A Motor Shield For Arduino)

아두이노 L293D 모터드라이버 쉴드 (1A Motor Shield For Arduino)

공유
VAT 포함 가격입니다.
판매가
14,300 (부가세 포함)
구매혜택
할인 : 적립 마일리지 :
상품코드
2129
브랜드
DFRobot
제조사
DFRobot
구매제한
옵션당 최소 1개
아두이노 L293D 모터드라이버 쉴드 (1A Motor Shield For Arduino)
0
총 상품금액
총 할인금액
총 합계금액

L293을 사용하여 7~12V의 DC 모터 제어를 할 수 있는 쉴드입니다. 아두이노 우노, 듀에밀라노브, 메가에 끼워서 사용할 수 있습니다.




PinFunction
Digital 4Motor 2 Direction control
Digital 5Motor 2 PWM control
Digital 6Motor 1 PWM control
Digital 7Motor 1 Direction control

위와 같이 핀을 연결한 후에 다음의 소스코드를 업로드하여 사용할 수 있습니다.

//This motor shield use Pin 6,5,7,4 to control the motor
// Simply connect your motors to M1+,M1-,M2+,M2-
// Upload the code to Arduino/Roboduino
// Through serial monitor, type 'a','s', 'w','d','x' to control the motor
// www.dfrobot.com
// Last modified on 24/12/2009
 
int EN1 = 6; 
int EN2 = 5;  //Roboduino Motor shield uses Pin 9
int IN1 = 7;
int IN2 = 4; //Latest version use pin 4 instead of pin 8
  
 
 
void Motor1(int pwm, boolean reverse)
        {
          analogWrite(EN1,pwm); //set pwm control, 0 for stop, and 255 for maximum speed
         if(reverse)
         {
          digitalWrite(IN1,HIGH);   
         }
        else
        {
          digitalWrite(IN1,LOW);   
         }
        
         
void Motor2(int pwm, boolean reverse)
        {
          analogWrite(EN2,pwm);
         if(reverse)
         {
          digitalWrite(IN2,HIGH);   
         }
        else
        {
          digitalWrite(IN2,LOW);   
         }
        
        
void setup()
{
    int i;
   // for(i=6;i<=9;i++) //For Roboduino Motor Shield
   // pinMode(i, OUTPUT);  //set pin 6,7,8,9 to output mode
 
    for(i=4;i<=7;i++)  //For Arduino Motor Shield
    pinMode(i, OUTPUT);  //set pin 4,5,6,7 to output mode
 
    Serial.begin(9600);  
}
 
 
void loop()
{
  int x,delay_en;
  char val;
  while(1)
  {
    val = Serial.read();
    if(val!=-1)
       {
          switch(val)
           {
             case 'w'://Move ahead
                        Motor1(100,true);  //You can change the speed, such as Motor(50,true)
                        Motor2(100,true);
                       
                         break;
             case 'x'://move back
                        Motor1(100,false);
                        Motor2(100,false);
                         break;
             case 'a'://turn left
                        Motor1(100,false);
                        Motor2(100,true);
                         break;      
             case 'd'://turn right
                        Motor1(100,true);
                        Motor2(100,false);
                        break;  
               case 's'://stop
                        Motor1(0,false);
                        Motor2(0,false);
                         break;
                                   
           }    
         
       }
            
  }                          
}


INTRODUCTION

This Motor shield  for Arduino uses L293 chip which allow to drive two 7-12V DC motors with maximum 1A current. This shield can be directly mount onto standard Arduino Duemilanove and Arduino Mega. 

 

SPECIFICATION

·         2 way 7-12V motor drive 

·         Up to 1A current each way

·         PIN 4,5,6,7 are used to drive two DC motors

·         Support PWM speed control 

 

DOCUMENTS

·         Manual

SHIPPING LIST

·         1A Motor Shield  For Arduino  x1

 

아두이노 나노 CNC 쉴드 V4 / CNC Shield V4
5,500
품절
아두이노 L298P 2A 모터드라이버 쉴드 (DFRobot 2A motor shield)
아두이노 L298P 2A 모터드라이버 쉴드 (DFRobot 2A motor shield)
19,800
아두이노 L298P 2A 모터 드라이버 쉴드 / 2A 26V / DC모터 2개 제어 / 2Amp Motor Driver Shield
아두이노 L298P 2A 모터 드라이버 쉴드 / 2A 26V / DC모터 2개 제어 / 2Amp Motor Driver Shield
18,200
[호환] 아두이노 서보 쉴드 / 16채널 12-bit PWM/Servo 드라이버 쉴드 - I2C 인터페이스 / PCA9685
[호환] 아두이노 서보 쉴드 / 16채널 12-bit PWM/Servo 드라이버 쉴드 - I2C 인터페이스 / PCA9685
5,500
아두이노 10A 모터드라이버 쉴드 / Cytron 10A Motor Driver Shield (Arduino)
아두이노 10A 모터드라이버 쉴드 / Cytron 10A Motor Driver Shield (Arduino)
15,960

장바구니 담기

상품이 장바구니에 담겼습니다.
바로 확인하시겠습니까?

찜 리스트 담기

상품이 찜 리스트에 담겼습니다.
바로 확인하시겠습니까?

이미지 확대보기아두이노 L293D 모터드라이버 쉴드 (1A Motor Shield For Arduino)

아두이노 L293D 모터드라이버 쉴드 (1A Motor Shield For Arduino)
  • 아두이노 L293D 모터드라이버 쉴드 (1A Motor Shield For Arduino)
닫기

비밀번호 인증

글 작성시 설정한 비밀번호를 입력해 주세요.

닫기

장바구니 담기

상품이 장바구니에 담겼습니다.
바로 확인하시겠습니까?

찜 리스트 담기

상품이 찜 리스트에 담겼습니다.
바로 확인하시겠습니까?

  • 장바구니
  • 최근본상품
  • 위로
  • 아래로

최근 본 상품

  • 아두이노 L293D 모터드라이버 쉴드 (...
    14,300
0/2
우측 배너
고객센터

053-588-4080평일상담 : 10:00 ~ 17:00 | 점심시간 : 12:00 ~ 13:00
주말 및 공휴일 휴무

계좌안내

신한은행100-032-613560
예금주 : (주)메카솔루션