本站改版新增arduino频道

Micropython
Arduino

arduino 继电器


arduino 继电器

int pinRelay = 3;                        //管脚D3连接到继电器模块的信号脚
 
void setup()
 {
  pinMode(pinRelay, OUTPUT);             //设置pinRelay脚为输出状态
}
 
void loop() 
{ 
   digitalWrite(pinRelay, HIGH);         //输出HIGH电平,继电器模块闭合
   delay(5000);                          //等待5000毫秒
 
   digitalWrite(pinRelay, LOW);          //输出LOW电平,继电器模块断开
   delay(8000);                          //等待8000毫秒
}



推荐分享
图文皆来源于网络,内容仅做公益性分享,版权归原作者所有,如有侵权请告知删除!
 

Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号

执行时间: 0.0092699527740479 seconds