Simple HTTP Requests on Arduino Microcontrollers
For one of my current projects I had a closer look into the HTTP Protocol. Usually you might use a separate library for doing http calls from Arduino (e.g. with an ESP32) but if you are low on memory, you might get away without this by just using the WiFiClient: Setting up a WiFi connection On an ESP32 you would e.g. do the following: First you need to connect to WiFI and then you can Read more…