Cài đặt ESP8266 Trên Arduino IDE
PHẦN I: CÀI ĐẶT.
Bước 1: Mở Arduino IDE.
Trong IDE Arduino của bạn, File> Preferences
Bước 2:
http://arduino.esp8266.com/stable/package_esp8266com_index.json
Coppy và làm như sau:
Bước 3: Boards Manager Làm như sau:
Go to Tools > Board > Boards Manager
Search "ESP8266".
PHẦN II: TEST CODE.
BƯỚC 1: CHỌN BOARD
Bước 2: Chọn PORT. ( Khi các bạn cắm ESP8266 vào mới thấy PORT).
Thử đoạn code ví dụ sau:
int pin = 2;
void setup() {
// initialize GPIO 2 as an output.
pinMode(pin, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(pin, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(pin, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
Sau đó complie và nạp code:
Phần cứng bạn chuẩn bị như thế này: