by Xukyo | 21 Oct 2021 | Tutorials
The esp32 microcontroller from Espressif is able to be configured as an WiFi access point (AP) and generate its own WiFi network with ssid and password. This method is useful when you do not have access to a WiFi network or if you want to work on a network specific to...
by Xukyo | 28 Jun 2021 | Tutorials
When you have a number of microcontrollers to flash with the same program, it can be interesting to flash the compiled BIN file directly. This has two interests. It saves you time on uploading and it allows third parties to upload a program without using the Arduino...
by Xukyo | 25 May 2021 | Tutorials
In home automation, it is interesting to be able to manipulate alternating current in order to control different electrical appliances such as lamps or fans. The AC voltage dimmer is a module allowing to vary the power of an alternating current. It has the same use as...
by Xukyo | 3 May 2021 | Tutorials
The EEPROM is an internal memory of the ESP32 microcontroller that allows to keep in memory data after restarting the board. When working with microcontrollers, it is interesting to keep data in memory especially when the card turns off whether it is wanted or not, as...
by Xukyo | 3 May 2021 | Tutorials
The RC522 RFID module is a smart card reader which, among other things, allows to activate a mechanism when the right card is presented to the reader. In this tutorial, we will see the management of an RC522 RFID module with an ESP32 NodeMCU card. Prerequisite:...