Introduction to the Linkit Smart Duo, a powerful development board based on the OpenWrt Linux distribution.
Python: Parsing JSON
The objective of this post is to explain how to parse the response of a HTTP request which is in JSON format. Introduction The objective of this post is to explain how to parse the response of a HTTP GET request which is in JSON format. We will use the Requests library to perform the request …
Python: HTTP POST Requests
The objective of this post is to explain how to do HTTP POST requests using Python and the Requests library. Introduction The objective of this post is to explain how to do HTTP POST requests using Python and the Requests library. The simplest way to install this library is by using pip, as can be seen in …
ESP8266 Webserver: Receiving GET requests from Python
The objective of this post is to explain how to make a Python application talk with a ESP8266 by sending HTTP GET Requests to a HTTP web server running on the microcontroller. Introduction The objective of this post is to explain how to make a Python application talk with a ESP8266 by sending HTTP GET Requests …
Continue reading "ESP8266 Webserver: Receiving GET requests from Python"
Python: HTTP GET requests
The objective of this post is to explain how to do HTTP GET requests using Python and the Requests library. Introduction The objective of this post is to explain how to do HTTP GET requests using Python and the Requests library. The simplest way to install this library is by using pip, as can be …
Python: An introduction
The objective of this post is to present a quick introduction to the Python programming language.
ESP8266 Webserver: Getting query parameters
The objective of this post is to explain how to access query parameters passed in HTTP requests sent to a web server deployed in the ESP8266. Introduction The objective of this post is to explain how to access query parameters passed in HTTP requests sent to a web server deployed in the ESP8266. Query parameters …
Continue reading "ESP8266 Webserver: Getting query parameters"
ESP8266 HTTP server: Serving HTML, Javascript and CSS
The objective of this post is to explain how to serve some HTML, Javascript and CSS in a ESP8266 HTTP webserver. Introduction The objective of this post is to explain how to serve some HTML, Javascript and CSS in a ESP8266 HTTP webserver. It's important to take in consideration that HTML, Javascript and CSS are …
Continue reading "ESP8266 HTTP server: Serving HTML, Javascript and CSS"
ESP8266: Setting a simple HTTP web server
The objective of this post is to explain how to set a HTTP web server on a ESP8266 and how to make some requests to it using a web browser. Introduction The objective of this post is to explain how to set an HTTP web server on a ESP8266 and how to make some requests …
Continue reading "ESP8266: Setting a simple HTTP web server"
ESP8266: Controlling a LED matrix with the 74HC595 ICs
The objective of this post is to explain how to control the LEDs of a LED matrix using 2 74HC595 ICs and a ESP8266 microcontroller. Introduction The objective of this post is to explain how we can control a LED matrix using 2 74HC595 ICs and a ESP8266. With this method, we will only …
Continue reading "ESP8266: Controlling a LED matrix with the 74HC595 ICs"