JSON Archives - electroSome https://electrosome.com/tag/json/ You Inspire.....We Create..... Sat, 09 Jun 2018 05:01:47 +0000 en-US hourly 1 https://wordpress.org/?v=6.1.1 Calling API using ESP8266 https://electrosome.com/calling-api-esp8266/ https://electrosome.com/calling-api-esp8266/#respond Sat, 09 Jun 2018 02:33:42 +0000 https://electrosome.com/?p=14836 The objective of this tutorial is to explain how to do HTTP JSON GET requests using an ESP8266 and Arduino IDE. Components Required ESP8266 USB Cable Hardware   Software Code #include <ESP8266WiFi.h> #include <ESP8266HTTPClient.h> #include <ArduinoJson.h> const char* ssid = "SERVER NAME"; const char* password = "SERVER PASSWORD"; void setup() { Serial.begin(115200); WiFi.begin(ssid, password); while […]

The post Calling API using ESP8266 appeared first on electroSome.

]]>
https://electrosome.com/calling-api-esp8266/feed/ 0