0
  • 聊天消息
  • 系统消息
  • 评论与回复
登录后你可以
  • 下载海量资料
  • 学习在线课程
  • 观看技术视频
  • 写文章/发帖/加入社区
会员中心
创作中心

完善资料让更多小伙伴认识你,还能领取20积分哦,立即完善>

3天内不再提示

如何设置带有Arduino IDE的NodeMCU 1.0

454398 来源:网络整理 作者:网络整理 2019-12-09 15:12 次阅读

步骤1:您需要什么

要遵循本教程,您需要以下组件:

Micro USB电缆

NodeMCU 1.0(ESP-12E模块)

LEDstrip

此外,您将需要:

Adafruit IO帐户

Google日历

Zapier帐户

Arduino IDE 1.8.2

步骤2:Google日历

如何设置带有Arduino IDE的NodeMCU 1.0

因为您提醒您,您应该在Google Calender中进行活动。

转到以下网站并进行活动:

https://www.google.com/calendar

步骤3:连接带有Zapier的Google日历

创建一个Zapier帐户(如果尚未执行此操作)。单击“制作一个zap”(右上角的橙色按钮),然后将您的Google Calender与Zapier连接。为此,您需要在搜索字段中输入Google Calender并单击它。这样,您可以将压延机与Zapier连接。

步骤4:触发器

选择事件开始作为触发器并选择您的Google帐户。接下来,在“编辑选项”部分中,您应该写出要触发事件的距离。您将根据自己的回答在LED灯条上收到通知。最后,您需要编写与您在Google日历中命名活动的方式完全匹配的搜索词。立即保存您的Zap。

第5步:将Zapier与Adafruit IO连接

触发触发器之后,执行此操作。要将Adafruit IO与Zapier连接,您需要转到以下链接:https://zapier.com/developer/invite/25310/e5b57f6e084ed73db02db095986ead31/不要创建新的Zap,请进一步处理已经制作的Zap 。现在选择Adafruit作为动作。

步骤6:Adafruit数据和值

添加您的Adafruit帐户并粘贴您的AIO密钥。设置为值“ 1”。我们需要它来触发事件。稍后,您还将在代码中看到该值。转到Adafruit并进行一个名为“测试”的提要。在Zapier中输入此内容。您可以测试Zap是否有效。您应该在Adafruit Feed中看到该值。

步骤7:添加代码以连接到Adafruit

使用MicroUSB电缆将NodeMCU连接到PC。您还应该将LED灯带也连接到NodeMCU的D5,G和3V中。确保以这种方式连接LED灯条。现在将以下代码添加到Arduino草图中。

// Adafruit IO Digital Output Example

// Tutorial Link: https://learn.adafruit.com/adafruit-io-basics-digital-output

//

// Adafruit invests time and resources providing this open source code.

// Please support Adafruit and open source hardware by purchasing

// products from Adafruit!

//

// Written by Todd Treece for Adafruit Industries

// Copyright (c) 2016 Adafruit Industries

// Licensed under the MIT license.

//

// All text above must be included in any redistribution.

/************************** Configuration ***********************************

/ edit the config.h tab and enter your Adafruit IO credentials

// and any additional configuration needed for WiFi, cellular,

// or ethernet clients.

#include “config.h”

#include “Adafruit_NeoPixel.h”

/************************ Example Starts Here *******************************

/ digital pin 5

#define PIXEL_PIN D5

#define PIXEL_COUNT 24

#define PIXEL_TYPE NEO_GRB + NEO_KHZ800

Adafruit_NeoPixel pixels = Adafruit_NeoPixel(PIXEL_COUNT, PIXEL_PIN, PIXEL_TYPE);

// set up the ‘digital’ feed

AdafruitIO_Feed *Test = io.feed(“Test”);

void setup() {

// start the serial connection

Serial.begin(115200);

// wait for serial monitor to open

while(! Serial);

// connect to io.adafruit.com

Serial.print(“Connecting to Adafruit IO”);

io.connect();

// set up a message handler for the ‘digital’ feed.

// the handleMessage function (defined below)

// will be called whenever a message is

// received from adafruit io.

Test-》onMessage(handleMessage);

// wait for a connection

while(io.status() 《 AIO_CONNECTED) {

Serial.print(“。”);

delay(500);

}

// we are connected

Serial.println();

Serial.println(io.statusText());

pinMode(D5, OUTPUT);

}

void loop() {

// io.run(); is required for all sketches.

// it should always be present at the top of your loop

// function. it keeps the client connected to

// io.adafruit.com, and processes any incoming data.

io.run();

}

步骤8:Arduino中的新标签

新建一个标签页并将其命名“config.h中”。您实际上需要包含config.h(请参见前面的代码)。在以下代码中,您需要编写您自己的Adafruit用户名和您自己的密钥。如果您还不知道密钥,请转到Adafruit IO,然后单击“查看AIO密钥”。将其粘贴到Arduino中。确保已安装Arduino Neopixel库,否则代码将无法正常工作。

/************************ Adafruit IO Config *******************************/

// visit io.adafruit.com if you need to create an account,

// or if you need your Adafruit IO key.

#define IO_USERNAME “Your AIO username”

#define IO_KEY “Your AIO key”

/******************************* WIFI **************************************

/ the AdafruitIO_WiFi client will work with the following boards:

// - HUZZAH ESP8266 Breakout -》 https://www.adafruit.com/products/2471

// - Feather HUZZAH ESP8266 -》 https://www.adafruit.com/products/2821

// - Feather M0 WiFi -》 https://www.adafruit.com/products/3010

// - Feather WICED -》 https://www.adafruit.com/products/3056

#define WIFI_SSID “Your wifi or hotspot name”

#define WIFI_PASS “Your wifi or hotspot password”

// comment out the following two lines if you are using fona or ethernet

#include “AdafruitIO_WiFi.h”

AdafruitIO_WiFi io(IO_USERNAME, IO_KEY, WIFI_SSID, WIFI_PASS);

/******************************* FONA **************************************

/ the AdafruitIO_FONA client will work with the following boards:

// - Feather 32u4 FONA -》 https://www.adafruit.com/product/3027

// uncomment the following two lines for 32u4 FONA,

// and comment out the AdafruitIO_WiFi client in the WIFI section

// #include “AdafruitIO_FONA.h”

// AdafruitIO_FONA io(IO_USERNAME, IO_KEY);

/**************************** ETHERNET ************************************

/ the AdafruitIO_Ethernet client will work with the following boards:

// - Ethernet FeatherWing -》 https://www.adafruit.com/products/3201

// uncomment the following two lines for ethernet,

// and comment out the AdafruitIO_WiFi client in the WIFI section

// #include “AdafruitIO_Ethernet.h”

// AdafruitIO_Ethernet io(IO_USERNAME, IO_KEY);

步骤9:测试是否已连接到Adafruit

如果复制正确,则在串行监视器中上传后应该会看到以下内容:

Connecting to Adafruit IO.。..

Adafruit IO connected.

步骤10:更新代码以接收数据

在初始选项卡中添加以下代码,以在LED灯条上接收颜色。如果您的活动即将开始,您将获得这些颜色。

if (data-》toPinLevel() == 1) {

for(int i=0; i

pixels.setPixelColor(i, 0, 255, 0);

pixels.show();

}

Serial.println(“Event is about to start!”);

}

digitalWrite(PIXEL_PIN, data-》toPinLevel());

}

}

步骤11:最终通知

如果执行了以下步骤正确并且您的事件即将开始,您将在串行监视器上收到通知。您将看到以下内容:

Connecting to Adafruit IO.。.

Adafruit IO connected.

received 《- Event is about to start!

责任编辑:wv

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉
  • Arduino
    +关注

    关注

    187

    文章

    6461

    浏览量

    186565
  • NODEMCU
    +关注

    关注

    13

    文章

    289

    浏览量

    21280
收藏 人收藏

    评论

    相关推荐

    Turbo模式1.0设置步骤

    电子发烧友网站提供《Turbo模式1.0设置步骤.pdf》资料免费下载
    发表于 10-15 10:11 0次下载
    Turbo模式<b class='flag-5'>1.0</b><b class='flag-5'>设置</b>步骤

    Arduino Nano 和 NodeMCU ESP8266 读取 DHT11 环境温湿度数据及 OLED显示

    Arduino Nano 和 NodeMCU ESP8266 读取 DHT11 环境温湿度数据及 OLED显示
    的头像 发表于 08-13 18:04 930次阅读
    <b class='flag-5'>Arduino</b> Nano 和 <b class='flag-5'>NodeMCU</b> ESP8266 读取 DHT11 环境温湿度数据及 OLED显示

    请问如何在NodeMcu设置NON-OS SDK?

    如何在 NodeMcu设置 NON-OS SDK?
    发表于 07-19 14:51

    为什么无法在nodemcuarduino mega之间交换数据?

    您好,我正在尝试通过 UART 在 arduino mega 和 nodemcu 之间交换数据(使用 arduino IDE 对两者进行编程)。 我将
    发表于 07-19 12:15

    如何让两个ESP8266可以连续地相互通信?

    大家好,我是ESP8266的新手,不懂其他语言,所以我在 Arduino IDE 中使用 Nodemcu1.0 进行工作。从那时起,我首先将ESP8266设为 AP,它起作用了,然后我将其设置
    发表于 07-12 10:12

    将ESP12与Arduino IDE一起使用,WIFI在哪里被激活?

    我正在将 ESP12 与 Arduino IDE 一起使用。 当 init() 被调用时,WIFI 已经处于活动状态。 WIFI是否在RTOS级别激活?还是在Arduino代码级别? 谁能告诉我WIFI在哪里被激活?
    发表于 07-12 06:31

    能将ESP8266连接到arduino UNO上,使用mesh组网吗?

    现在已将ESP8266连接到了arduino,并且成功驱动,但是有个问题就是组网的问题,想使用mesh,但是还有有些疑问。1、将带有mesh的固件烧录到ESP8266中,就能自动寻找节点了吗?或者是下载mesh的库函数,从arduino
    发表于 07-11 06:46

    ESP-12E NodeMCU使用SPIFFS来存储数据出现看门狗超时的情况怎么解决?

    ,它报告了大小不匹配。IDE 大小为 4M,实际大小为 1M。我使用的是 NodeMCU 1.0(ESP-12E 模块)的 Adruino IDE 开发板定义,闪存
    发表于 07-11 06:42

    如何确保GPIO即使在重置ESP8266期间仍保持在给定状态的信息?

    你好 我希望这是发布此查询的正确位置。 我正在寻找有关如何确保GPIO即使在重置ESP8266期间仍保持在给定状态的信息 硬件:nodeMCU V1.0 上的 ESP-12E。通过Arduino
    发表于 07-10 07:02

    如何使用Arduino IDE构建的ELF映像?

    我有一个要求,我需要使用使用 Arduino IDE 构建的ELF映像,但 NonOS SDK 中提供了boot_v1.6.bin。我执行了以下步骤 背景: 1. Arduino 构建 2 个
    发表于 07-09 07:13

    请问如何进行ESP32任意管脚设置成I2C在ARDUINO IDE?

    请问如何进行 ESP32 任意管脚设置成 I2C 在 ARDUINO IDE? 谢谢
    发表于 06-17 07:51

    请问ESP32-S3-DEVKITC-1是否支持Arduino IDE 1.8.8编译及烧录?

    请问ESP32-S3-DEVKITC-1是否支持Arduino IDE 1.8.8编译及烧录?使用Arduino IDE 1.8.8成功编译串口监视器例程并显示上传成功后,串口监视器不
    发表于 06-05 07:57

    如何设置Arduino霍尔效应传感器

    在本指南中,您将学习如何设置Arduino霍尔效应传感器,特别是US1881,以检测磁场。这对于需要查找电机的转速或机器中其他运动的项目非常有用。
    的头像 发表于 02-11 10:14 1323次阅读
    如何<b class='flag-5'>设置</b><b class='flag-5'>Arduino</b>霍尔效应传感器

    如何设置Arduino IR发射器电路

    在本指南中,您将学习如何设置 Arduino IR发射器电路。它使您可以控制IR(红外线)LED,并从Arduino发送任何远程控制代码。这意味着你可以用它来控制你的电视或其他任何你喜欢的东西!
    的头像 发表于 02-11 09:44 797次阅读
    如何<b class='flag-5'>设置</b><b class='flag-5'>Arduino</b> IR发射器电路

    使用Arduino IDE 2.0开发ESP32摄像头模块

    本帖最后由 jf_12640084 于 2024-2-7 17:36 编辑 Arduino IDE是创客常用的开发平台。通过安装扩展包,Arduino IDE可以支持不同架构的开
    发表于 02-07 17:06