Control statements in Arduino are used to control the flow of execution in a program. They allow you to make decisions, repeat actions, and manage program logic based on certain …
-
-
Interrupts in Arduino allow you to execute specific pieces of code immediately when a particular event occurs, regardless of what the main program is doing. They are essential for creating …
-
Operators in Arduino are used to perform operations on variables and values. They are essential for controlling program flow, performing arithmetic, and making comparisons. This tutorial introduces the types of …
-
Arduino programming supports a variety of data types for storing and manipulating data. Understanding these data types is essential for writing efficient and bug-free programs. This tutorial introduces the different …
-
Here’s a list of 10 operating systems you can install on a Raspberry Pi, along with their descriptions and key features: 1. Raspberry Pi OS (formerly Raspbian) Description: The official …
-
Here are 10 handy Arduino code snippets for various common tasks: 1. Blink an LED const int ledPin = 13; void setup() { pinMode(ledPin, OUTPUT); } void loop() { digitalWrite(ledPin, …
-
The KY-032 Obstacle avoidance sensor module returns a signal when it detects an object in range. The range of the sensor is around 2-40 cm is distance. The Obstacle Avoidance …
-
The KY-033 Hunt sensor module detects if a light reflecting or absorbing area is in front of it. This module uses an IR transmitter and receiver that will detect how …
-
This is the KY-009 RGB Full color LED SMD Module. This module has a 5050 surface mount RGB LED that can be used to create virtually any colour by varying …
-
The KY-020 Arduino tilt switch sensor module. The KY-020 is a metallic ball switch that will open/close the circuit depending on the angle its tilted at. It does not measure …
-
The KY-025 Reed Switch Module is a small electrical switch which operates with an applied magnetic field, the module can be used as proximity sensor. The module has digital and …
-
The dual-axis joystick (KY-023) is a module which consists of two potentiometers and one button, allowing the user to control various devices (chassis, robots), for example, to remotely control a …
-
In this example we connect a MMA7361 to a STM32 Nucleo – the code is written in the Arduino IDE The MMA7361L is a low power, low profile capacitive micromachined …
-
In this article we connect an ADXL337 accelerometer to an STM32 Nucleo, the example was written in the Arduino IDE The ADXL337 is a small, thin, low power, complete 3-axis accelerometer with …