精品国产人成在线_亚洲高清无码在线观看_国产在线视频国产永久2021_国产AV综合第一页一个的一区免费影院黑人_最近中文字幕MV高清在线视频

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

    文章

    6464

    瀏覽量

    186642
  • NODEMCU
    +關注

    關注

    13

    文章

    289

    瀏覽量

    21299
收藏 人收藏

    評論

    相關推薦

    基于Arduino的串口通信項目

    Arduino開發板的TX和RX引腳連接起來。 二、軟件準備 Arduino IDE :從Arduino官方網站下載并安裝Arduino
    的頭像 發表于 11-22 09:24 ?173次閱讀

    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 ?978次閱讀
    <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

    請問如何進行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 ?1343次閱讀
    如何<b class='flag-5'>設置</b><b class='flag-5'>Arduino</b>霍爾效應傳感器

    如何設置Arduino IR發射器電路

    在本指南中,您將學習如何設置 Arduino IR發射器電路。它使您可以控制IR(紅外線)LED,并從Arduino發送任何遠程控制代碼。這意味著你可以用它來控制你的電視或其他任何你喜歡的東西!
    的頭像 發表于 02-11 09:44 ?801次閱讀
    如何<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