2021年3月28日 星期日

[BT/BLE] ESP32 Arduino環境安裝

前陣子得到一片 ESP32,雖然已經出好一陣子了,但功能還是很強大,
我參考網路上前輩們的網址嘗試去建立環境,而這次我先選擇使用Arduino!

醬是創客 - [ ESP32教學#1 ] NodeMCU-32S Wf-Fi/藍芽開發版硬體介紹:https://www.chosemaker.com/board/esp32/lesson-1/

醬是創客 - [ ESP32教學#2 ] NodeMCU-32S Windows Arduino環境設置與驅動程式安裝:https://www.chosemaker.com/board/esp32/lesson-2/



























接下來開始自己實際操作,事前準備:

打開Arduino, 並在檔案選擇[ 偏好設定 ], 並將下列貼到 [ 額外的開發板管理員網址 ]
https://dl.espressif.com/dl/package_esp32_index.json




之後打上[esp32], 並下載安裝! 安裝成功後即大功告成




現在馬上來測試一下:
範例: 01.Basic -> Blink, 這是一個LED閃爍的範例

我在這邊更改了腳位為Pin 2來做LED閃爍
// the setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(2, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(2, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);                       // wait for a second
  digitalWrite(2, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);                       // wait for a second
}

開始編譯與燒錄




























實際測試結果..成功~










#ESP32#BLE#Wi-Fi

沒有留言:

張貼留言