by Xukyo | 27 Jul 2023 | Tutorials
You can turn your Raspberry Pi into an intelligent assistant by using a voice synthesizer like eSpeak. Thanks to this tutorial, you’ll be able to make your robot or application talk. Hardware Raspberry Pi 3 avec Raspberry Pi OS Internet connection and remote...
by Xukyo | 16 Mar 2023 | Tutorials
, , We have seen that the ESP8266 NodeMCU is easily programmable using the Arduino IDE. We will see how to program it with MicroPython. The advantage of using Python to program an ESP8266 is to use it to its full potential. Before following this tutorial, you must...
by Xukyo | 30 Jun 2022 | Tutorials
The Arduino Due board allows multitasking using the Scheduler library. It is based on an ARM Cortex-M3 microcontroller in 32 Bits with 84MHz. It is therefore much more powerful than an Arduino UNO. These characteristics allow it to create more powerful multitasking...
by Xukyo | 13 Apr 2022 | Tutorials
The use of timers in Arduino is an advanced method to execute code without disturbing the rest of the program. They allow to activate functions at specific time intervals. Timers are used in many libraries in a completely transparent way for the user (millis(),...
by Xukyo | 29 Mar 2022 | Tutorials
The Arduino FlexiTimer2 library is a library that allows to activate functions at regular time intervals. It allows, as such, to make multitasking programs with Arduino microcontrollers. This method is useful when you want to operate two motors in parallel...