电机风扇模块
- 产品概述
—————————————————————————————————
电机驱动小模块是一款IO口小电流驱动大电流的驱动模块设计有防止反电动势的续流二极管,产品驱动方便,可PWM驱动控制,兼容性强等优点。 - 产品参数
—————————————————————————————————
工作电压:DC3.3—5v
工作电流: 31ma-54ma
堵转电流:210ma-340ma
触发电平:低电平 - 端口说明
_________________________________________________________________________
3PIN防反接插口 - 示例程序
—————————————————————————————————
/*
www.openjumper.cn
*/
const int condPin = 2;
const int motorPin = 4;
int condState = 0;
void setup() {
pinMode(motorPin, OUTPUT);
pinMode(condPin, INPUT);
}
void loop() {
condState = digitalRead(condPin);
if (condState == HIGH)
{
digitalWrite(motorPin, HIGH);
}
else
{
digitalWrite(motorPin, LOW);
}
}