一个按钮依次开启多个继电器该怎么写?-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 381|回复: 0

[未解决] 一个按钮依次开启多个继电器该怎么写?

[复制链接]
发表于 2022-7-28 10:40 | 显示全部楼层 |阅读模式
30金币
#include <ezButton.h>
         const int BUTTON_PIN = 7; //   7脚按钮
         const int RELAY_PIN  = 3; //   3脚继电器
           ezButton button(BUTTON_PIN);  // create ezButton object that attach to pin 7;
           int relayState = LOW;   // 当前继电器的变化
void setup() {
           pinMode(RELAY_PIN, OUTPUT); // 设置RELAY_PIN脚为输出模式
                 button.setDebounceTime(50); // 防抖50ms
               }
void loop() {
               button.loop(); // MUST call the loop() function first
           if(button.isPressed()) {
             relayState = !relayState;  //继电器切换
             digitalWrite(RELAY_PIN, relayState);
             }
          }


您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-12-29 23:41 , Processed in 0.067666 second(s), 13 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表