-
ESP-IDF Libraries in Arduino framework
I started to dig a bit more into the Iot development network from Espressif with the intention to slowly learn something new. All the official examples of Mesh lights, ESP32-Camera and ESP-WHO that presents a preliminary version of face recognition are built on the top of the IDF. So sooner or later, I think will…
-
Starting to do smart-home appliances with ESP-Mesh
“ESP–Mesh reduces the loading of smart light devices on the router by forming a mesh with the smart light device.” I’ve started months ago getting some smart lights for home and I’ve chosen Osram since it was about half the price than Phillips VUE. But the thing with this systems, though they work nice and…
-
Simple IoT image logging using BigIot.net
Since beginning of 2019 I’m participating in a project called “Low cost / low power sleep / WiFi Camera” so I purchased a couple of low cost boards, between them the LilyGO ESP 32 Camera. BigIot.net is an interesting IOT API site Not only an API but a very interesting infrastructure that is also possible…
-
Espressif multi-SPI workshop
Serial parallel interface was developed by Motorola in the eighties and is the standard or short communication in embedded devices. The data transmission is explained in detail in the Wikipedia SPI article. But basically is along this lines and we will add some code examples below: The bus master sets up the clock using a…
-

PlatformIO: An alternative to Arduino IDE and a complete ecosystem for IoT
As an introduction I would like to make clear that I’m not a C++ advanced coder or IoT professional, I do this just because it’s a challenge, and because it’s a lot of fun compared to my 9 hrs/5 days a week web developer doing PHP and Admin panels for clients in Germany. Two months…
-
Chunk uploading files via WiFi with Espressif boards
Derived from this FS2 Camera project I would like to make an sequential uploader that matches this use-case.Any file major than 50 Kilobytes will be uploaded in chunks of 50 Kb, using the following workflow: Picture.jpg (150 Kb) -> Read fifo from Arducam -> Send first 50 Kb to upload API along with an md5…
-

ESP-32 a new standard of speed and connectivity
Developed by Espressif the ESP32 brings a new standard in low-cost WiFi boards. After porting one project to this new board I must say that it’s very similar to the ESP8266 and most code except some updated libraries, should work with minimal effort. “ESP32 is a series of low-cost, low-power system on a chip microcontrollers…
-

Uploading your pictures directly into the cloud
Yesterday I found some time to make an example of image push to the Cloud using Seafile storage. The idea is that instead of making a regular file upload that needs some kind of Backend gallery to preview the pictures, we can have a different take, like pushing the picture directly to your Cloud-storage. WiFi…
-
FS2 camera from Blender to production
In this entry, I wanted to document what is the process of making one of this cameras, starting from the 3D – model to the end product where you turn it on and connects to WiFi ready to take pictures. After removing the support and sanding the round columns the first thing is to connect…
-
Connecting to SSL from Espressif 8266 SoC
There are 2 ways that I know about validating an SSL certificate: 1 – Generate a root certificate in DER format (somehow tricky) 2 – Copying the SHA1 hash from the browser certificate details (easier) … and as we are mostly lazy developers we will go for the number 2 DER format into hexa In…