ESP-WROOM-02 Arduino 호환 보드로 빨리 HTTP 통신 할 수있었습니다.
11692 단어 ArduinoESP8266ESP-WROOM-02
스위치 사이언스 ESP-WROOM-02 Arduino 호환 보드
스위치 과학에서 ESP-WROOM-02 Arduino 호환 보드이 출시되었습니다. 지금까지는 ESP-WROOM-02(ESP8266)를 Arduino의 스케치를 작성하여 사용하기 위해서는 모듈을 납땜하여 브레드보드에서 사용하거나 조금 사용하기 어려운 부분이 있었습니다. 그것을이 호환 보드가 해소합니다
ESP-WROOM-02 Arduino 호환 보드
ESP8266 Arduino Core에서 HTTP 통신을 빨리 해 봅시다.
Arduino IDE에서 ESP8266을 개발할 때 사용하는 라이브러리ESP8266 Arduino Core는 HTTP 통신에 관계없이 유용한 기능을 제공합니다. Arduino IDE의 메뉴에서 [파일] → [스케치 예]에 ESP8266 관련 샘플이 계속 추가되어 있기 때문에 세련된 시도
Arduino IDE에서의 환경 구축에 대해서는 본가의 기사 「ESP-WROOM-02 개발 보드를 Arduino IDE에서 개발하는 방법」를 봐 주세요.
샘플을 조금 만지며 HTTP 통신
베이스로 한 것은 Arduino IDE의 메뉴에서 [파일] → [스케치의 예] → [ESP8266WiFi] → [WiFiClient]의 샘플. 그대로는 sparkfun의 사이트에 액세스 하는 것이므로, 아래와 같이 고래 외국환 확인 API에서 일본 엔의 레이트를 json으로 취득하도록 변경했습니다 (json의 퍼스는 미대응). 변경한 것은 loop()
함수내의 URL 정도입니다. 쉽네요
#include <ESP8266WiFi.h>
const char* ssid = "your-ssid";
const char* password = "your-password";
const char* host = "api.aoikujira.com";
void setup() {
Serial.begin(115200);
delay(10);
// We start by connecting to a WiFi network
Serial.println();
Serial.println();
Serial.print("Connecting to ");
Serial.println(ssid);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
}
void loop() {
delay(5000);
Serial.print("connecting to ");
Serial.println(host);
// Use WiFiClient class to create TCP connections
WiFiClient client;
const int httpPort = 80;
if (!client.connect(host, httpPort)) {
Serial.println("connection failed");
return;
}
// We now create a URI for the request
String url = "/kawase/json/jpa";
Serial.print("Requesting URL: ");
Serial.println(url);
// This will send the request to the server
client.print(String("GET ") + url + " HTTP/1.1\r\n" +
"Host: " + host + "\r\n" +
"Connection: close\r\n\r\n");
int timeout = millis() + 5000;
while (client.available() == 0) {
if (timeout - millis() < 0) {
Serial.println(">>> Client Timeout !");
client.stop();
return;
}
}
// Read all the lines of the reply from server and print them to Serial
while(client.available()){
String line = client.readStringUntil('\r');
Serial.print(line);
}
Serial.println();
Serial.println("closing connection");
}
얻을 수 있었어!
시리얼 모니터로 취득할 수 있었던 것을 무사 확인. 헤더 정보 등도 함께 취할 수 있네요
Arduino 호환 보드라고 하는 것보다 ESP8266 Arduino Core가 편리했습니다
ESP8266 Arduino Core 자체는 Arduino 호환 보드가 없어도 사용할 수 있으므로 결국 ESP8266 Arduino Core가 편리하다는 이야기였습니다
ESP-WROOM-02 Arduino 호환 보드 기사 목록
Arduino IDE에서 ESP8266을 개발할 때 사용하는 라이브러리ESP8266 Arduino Core는 HTTP 통신에 관계없이 유용한 기능을 제공합니다. Arduino IDE의 메뉴에서 [파일] → [스케치 예]에 ESP8266 관련 샘플이 계속 추가되어 있기 때문에 세련된 시도
Arduino IDE에서의 환경 구축에 대해서는 본가의 기사 「ESP-WROOM-02 개발 보드를 Arduino IDE에서 개발하는 방법」를 봐 주세요.
샘플을 조금 만지며 HTTP 통신
베이스로 한 것은 Arduino IDE의 메뉴에서 [파일] → [스케치의 예] → [ESP8266WiFi] → [WiFiClient]의 샘플. 그대로는 sparkfun의 사이트에 액세스 하는 것이므로, 아래와 같이 고래 외국환 확인 API에서 일본 엔의 레이트를 json으로 취득하도록 변경했습니다 (json의 퍼스는 미대응). 변경한 것은 loop()
함수내의 URL 정도입니다. 쉽네요
#include <ESP8266WiFi.h>
const char* ssid = "your-ssid";
const char* password = "your-password";
const char* host = "api.aoikujira.com";
void setup() {
Serial.begin(115200);
delay(10);
// We start by connecting to a WiFi network
Serial.println();
Serial.println();
Serial.print("Connecting to ");
Serial.println(ssid);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
}
void loop() {
delay(5000);
Serial.print("connecting to ");
Serial.println(host);
// Use WiFiClient class to create TCP connections
WiFiClient client;
const int httpPort = 80;
if (!client.connect(host, httpPort)) {
Serial.println("connection failed");
return;
}
// We now create a URI for the request
String url = "/kawase/json/jpa";
Serial.print("Requesting URL: ");
Serial.println(url);
// This will send the request to the server
client.print(String("GET ") + url + " HTTP/1.1\r\n" +
"Host: " + host + "\r\n" +
"Connection: close\r\n\r\n");
int timeout = millis() + 5000;
while (client.available() == 0) {
if (timeout - millis() < 0) {
Serial.println(">>> Client Timeout !");
client.stop();
return;
}
}
// Read all the lines of the reply from server and print them to Serial
while(client.available()){
String line = client.readStringUntil('\r');
Serial.print(line);
}
Serial.println();
Serial.println("closing connection");
}
얻을 수 있었어!
시리얼 모니터로 취득할 수 있었던 것을 무사 확인. 헤더 정보 등도 함께 취할 수 있네요
Arduino 호환 보드라고 하는 것보다 ESP8266 Arduino Core가 편리했습니다
ESP8266 Arduino Core 자체는 Arduino 호환 보드가 없어도 사용할 수 있으므로 결국 ESP8266 Arduino Core가 편리하다는 이야기였습니다
ESP-WROOM-02 Arduino 호환 보드 기사 목록
#include <ESP8266WiFi.h>
const char* ssid = "your-ssid";
const char* password = "your-password";
const char* host = "api.aoikujira.com";
void setup() {
Serial.begin(115200);
delay(10);
// We start by connecting to a WiFi network
Serial.println();
Serial.println();
Serial.print("Connecting to ");
Serial.println(ssid);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
}
void loop() {
delay(5000);
Serial.print("connecting to ");
Serial.println(host);
// Use WiFiClient class to create TCP connections
WiFiClient client;
const int httpPort = 80;
if (!client.connect(host, httpPort)) {
Serial.println("connection failed");
return;
}
// We now create a URI for the request
String url = "/kawase/json/jpa";
Serial.print("Requesting URL: ");
Serial.println(url);
// This will send the request to the server
client.print(String("GET ") + url + " HTTP/1.1\r\n" +
"Host: " + host + "\r\n" +
"Connection: close\r\n\r\n");
int timeout = millis() + 5000;
while (client.available() == 0) {
if (timeout - millis() < 0) {
Serial.println(">>> Client Timeout !");
client.stop();
return;
}
}
// Read all the lines of the reply from server and print them to Serial
while(client.available()){
String line = client.readStringUntil('\r');
Serial.print(line);
}
Serial.println();
Serial.println("closing connection");
}
시리얼 모니터로 취득할 수 있었던 것을 무사 확인. 헤더 정보 등도 함께 취할 수 있네요
Arduino 호환 보드라고 하는 것보다 ESP8266 Arduino Core가 편리했습니다
ESP8266 Arduino Core 자체는 Arduino 호환 보드가 없어도 사용할 수 있으므로 결국 ESP8266 Arduino Core가 편리하다는 이야기였습니다
ESP-WROOM-02 Arduino 호환 보드 기사 목록
Reference
이 문제에 관하여(ESP-WROOM-02 Arduino 호환 보드로 빨리 HTTP 통신 할 수있었습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/umi_kappa/items/c3c929c6f42c5bdf3143텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)