完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
嗨,
我正在尝试在 Wemos D1 mini D4 引脚上运行中断。 使用时需要电阻/电容吗 代码:全选pinMode(buttonPin, INPUT_PULLUP); (或者只是在 gnd 和 D4 之间切换?) 而不是 1 中断我得到一个系列(尽管 FALLING 选项,我在按下和释放开关时得到中断)。 这个想法是在按下开关时中断。 代码:全选#include #include const char* ssid = "xxx"; const char* password = "xxx"; const char* mqtt_server = "192.168.1.200"; const char* mqttUser = "mosquitto"; const char* mqttPassword = "mosquitto1"; const int mqttPort = 1883; const int buttonPin = 2; volatile byte buttonState = LOW; unsigned long aktualnyCzas = 0; WiFiClient espClient; PubSubClient client(espClient); void setup() { //pinMode(buttonPin, INPUT); pinMode(buttonPin, INPUT_PULLUP); Serial.begin(115200); Serial.println("----"); WiFi.begin( ssid, password ); while (WiFi.status() != WL_CONNECTED) { delay(1); } client.setServer(mqtt_server, mqttPort); while (!client.connected()) { if (client.connect("Przycisk2", mqttUser, mqttPassword )) { } else { } } attachInterrupt(digitalPinToInterrupt(buttonPin), sendmqtt, FALLING); delay(1000); } void sendmqtt() { buttonState = 1; } void loop() { client.loop(); if (buttonState == 1) { detachInterrupt(buttonPin); buttonState=0; client.publish("ha/switch1", "ON"); aktualnyCzas = millis(); Serial.println(aktualnyCzas); delay(1000); attachInterrupt(digitalPinToInterrupt(buttonPin), sendmqtt, FALLING); } } |
|
相关推荐
|
|
只有小组成员才能发言,加入小组>>
1019 浏览 1 评论
562浏览 6评论
469浏览 5评论
有没有办法在不使用混杂模式的情况下实现Wifi驱动程序接收缓冲区访问中断呢?
454浏览 5评论
454浏览 4评论
428浏览 4评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-3 01:30 , Processed in 0.736047 second(s), Total 47, Slave 38 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号