Buzzer

Arduino Buzzer Module GuideLearn how to connect and program a piezo buzzer with your Arduino to create sounds, alarms, and simple melodies.Jump to the Code0VOperating Voltage 0VOPERATING VOLTAGE0FREQUENCY RANGE (HZ)0PINS NEEDED What is a Buzzer Module?A buzzer module is a small electronic component that produces sound when an electrical signal is applied. It is one…

HC-SR04 with Bluetooth module

Γεια σας είμαι ο Εμμανουήλ Σπυριδάκης και θα σας δείξω σχετικά με έναν αισθητήρα απόστασης με μια εφαρμογή. Ο συγκεκριμένος αισθητηρας απόστασης ειναι χαμηλού κόστους και μπορεί να μετρήσει απόσταση απο 2 cm – 400 cm. Υλικά HC-SR04 Bluetooth module Cables Arduino uno Τρόπος Σχεδίασης Code #include <SoftwareSerial.h> #define trigPin 10 #define echoPin 13 SoftwareSerial…

Ethernet W5100 Shield

Γεια σας είμαι Ο Double AXE και σε αυτόν τον οδηγό θα σας δείξω ένα ethernet Ένα ethernet παρέχει την σύνδεση σου στο τοπικό δίκτυο. Δηλαδή ο μόνος τρόπος για να συνδεθείτε πρέπει να είστε στο δίκτυο στο οποίο βρίσκεται το ethernet. Μέσα στον κώδικα θα υπάρχει λίγο html ώστε να σχηματιστεί η σελίδα. Υλικά…

Arduino Joystick with servo

Γεια σας είμαι ο Εμμανουήλ Σπυριδάκης και σε αυτόν τον οδηγό θα μάθουμε σχετικά με το joystick. Ένα joystick διαθέτει ένα σύστημα δύο αξόνων Χ, Υ όπου σε κάθε άξονα υπάρχει ένα ποτενσιόμετρο. Σε κατάσταση ηρεμίας υπάρχει μία αντίσταση για κάθε άξονα Rx και Ry. Με αυτό το τρόπο μπορούμε να έχουμε αναλογική είσοδο και…

Bluetooth module

The HC-05 Bluetooth module empowers your Arduino projects with wireless communication. This tutorial will guide you through connecting and using the HC-05 to establish a Bluetooth connection between your Arduino and a smartphone or other Bluetooth device.

Arduino Rfid

How to find your UID   H UID θα σας χρειαστεί για να να μπορεί το Rfid να αναγνωρίζει την κάρτα Υλικά breadboard jumpers arduino uno Rfid #include <SPI.h> #include <MFRC522.h> #define SS_PIN 10 #define RST_PIN 9 MFRC522 mfrc522(SS_PIN, RST_PIN); // Create MFRC522 instance. void setup() { Serial.begin(9600); // Initialize serial communications with the PC…

Line tracker

Tutorial on how to use the KY-033 Line Tracking Sensor Module with an Arduino. The KY-033 module is an infrared sensor that detects whether the surface in front of it is reflective or opaque. It’s commonly used for line-following robots, obstacle detection, and other similar applications.

Servo

Understanding Servo Motors: Servo motors are components that can rotate their handles (usually between 0° and 180°). They are used to control the angular position of an object. How Servo Motors Work: After connecting the VCC and GND pins to 5V and 0V, respectively, we can control the servo motor by generating a proper PWM…

Keypad

This webpage tutorial will guide you through connecting and using a keypad with your Arduino board. Keypads allow for user input, opening up a world of possibilities for your Arduino projects.

Arduino Relay

The humble relay bridges the gap between Arduino’s low-voltage control world and the high-voltage realm of powering devices. This tutorial empowers you to control appliances and manage higher currents using relays with your Arduino, opening doors to various automation projects.