Arduino UNO R4 WiFi

Arduino UNO Rev 4 WiFi

Finally, after several years Arduino offers us a new version of the very famous Arduino UNO board now in its fourth revision. This new board, extremely enhanced and improved in its technical characteristics, is presented on the market in two different versions

Arduino UNO R4 Minima board

Arduino UNO R4 Minima

Finally, after several years Arduino offers us a new version of the very famous Arduino UNO board now in its fourth revision. This new board, extremely enhanced and improved in its technical characteristics, is presented on the market in two different versions:

Adafruit IO - Internet of Things for everyone

Adafruit IO – An IoT service to manage Arduino and view real-time data online

With the advent of the IoT (Internet of Things) the web environment is not only a prerogative of HTML pages made to show information for humans, but also an excellent environment for exchanging data between networks of devices and sensors. connected to the network. Today this reality is widespread and there are many services available on the network, SaaS (Software as a Service), specialized precisely for IoT devices, including Adafruit IO.

DHT11 e DHT22 sensors - Measuring temperature and humidity

DHT11 and DHT22 sensors – Measure humidity and temperature with Arduino

The DHT11 sensor (and the DHT22 sensor) allows you to measure both the temperature and the level of humidity in the air. Available on the market for a few euros, we find it already mounted on electrical boards that greatly facilitate its use. Let’s see in this article how easy it is to connect this sensor to our Arduino and how to take measurements..

Arduino - Servo Motors, how they work and how to control them

Arduino – Servo motors, how they work and how to control them

Servo motors are a particular type of motor, which thanks to their characteristics and ease of use, are often used in the first examples of motor control on boards such as Arduino or Raspberry. Model making makes a lot of use of this type of motors and there are many low-cost servo motors available on the market, also useful for educational purposes. In this article we will first see what servo motors are, how to use them and finally how to program Arduino in order to use them with some simple examples.

The EEPROM on Arduino - read and write data permanently

The EEPROM on Arduino – read and write data permanently

EEPROMs, which are the acronym for Electrically Erasable Programmable Read-Only Memory, are special microchips used to store data even after the device on which they are mounted has been turned off. The next time it is turned on, the device will then have data available to be loaded. That is, they are memory devices that, unlike RAM, are able to keep information inside them even after the power supply has been turned off.

Generate musical tones at 440 Hz and 432 Hz with Arduino

Generate musical tones at 440Hz and 432Hz with Arduino

There is a lot of talk about musical scales, of music at 440Hz and 432Hz without at times understanding the meaning of it. In this article we will see how to generate musical scales, the theory behind them, and how to create music at 440Hz or 432Hz. We will do it all using an Arduino board, and a small speaker (or buzzer).

Geiger Counter - Measuring radiation levels with Arduino

Geiger Counter – Measuring Radiation Levels with Arduino

Going back to the old boards that I found in a box, I found this Geiger counter perfectly functional to be interfaced as a shield to Arduino. In this article we will see its features together, and at the same time better understanding what a Geiger counter, or radiation sensor, is and how it works.

Learn how to program in C with Arduino - Lesson 2 Functions m

Learn programming in C with Arduino 2 – Functions

In this second article on programming with Arduino you will see a fundamental element: the functions and the role they play. At the end of this lesson, you will be able to recognize a function within a sketch, and you will have all the necessary knowledge on how to define them and use them for your purposes and projects.