Electronics related posts.
Continuing with the tutorials about the ESP-Now protocol, today I bring you one about how to add security to ESP-Now communications. This is very important to give security to your project and prevent someone from spying on your communications, or even flooding it with data. Types of security keys The…
If, like me, you have just started working with the ESP-Now WiFi protocol, surely you have used the basic example to test. This example will surely be similar to the one I discussed in my basic ESP-Now guide. If, after having started the ESP-Now communication, you have found that you…
Greetings!, today I bring you some guides about how to fix some minor problem encountered in GPi Case Recalbox versions. I will add guides from time to time so this page will be updated Connect to the GPi using SSH To follow the most of the changes in this guide…
This time I am going to talk about how to use the bluetooth connection BLE (Bluetooth Low Energy) in our ESP32. At the consumption level it may not contribute much since the consumption of the ESP32 processor is not low, but what it will provide us is an advanced communication…
You have most likely chosen this microcontroller for its connectivity options. These include Bluetooth connectivity, and in this post we are going to learn the basics about how to use it. First of all, to have everything unified and not complicate myself, I use the Arduino IDE, although sometimes I…
This time I am going to talk about how to start using our ESP32 microcontroller. In all traits this microcontroller is superior to most Arduinos, but it also consumes more power. This must be taken into account because depending on our project, it may be to kill flies with cannon…
Today I am going to bring you something a little more advanced in Arduino, and it is the way to use PCINT Interrupts (Pin Changes interrupts), in Arduino. Earlier we talked about hardware interrupts (INT), which were limited to certain pins depending on the Arduino model. The advantages of PCINT…
Some time ago I made a post about how to improve the analog readings of your Arduino. Today I bring you part 2, in which I add new methods to improve the readings. In this post I will focus on the VREF settings, and on a new functionality that I…
One of the interesting things about the Raspberry Pi Pico is that it has two cores, which will allow us to perform multithreaded executions. If you don't know what multithreaded execution is, I'll tell you what your computer does and what allows you to have several programs open at the…
Hello, today I bring you a basic tutorial on how to use a raspberry pi pico together with MicroPython, which will delight hobbyists. Mainly because it far exceeds the widely used ATMega328p in several respects. The technical differences between the two are as follows: Raspberry Pi PicoATMega328pCores21Architecture32 bits ARM8 Bits…