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…

ps2 test

Library for PS2 I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. // include libraries #include <PS2X_lib.h> PS2X ps2x; // create PS2 Controller Class int error = 0; byte type = 0; byte vibrate =…

Send numbers to Serial

Γεια σας είμαι ο Εμμανουήλ Σπυριδάκης και σήμερα θα σας δείξω πως να εκτυπώνετε αριθμούς στην σειριακή. Code Ο κώδικας στέλνει αριθμούς στην σειριακή έτσι ώστε η σειριακή να διαβάσει το τι θέλει να κάνει το Αrduino String command; void setup() { Serial.begin(9600); } void loop() { if(Serial.available()){ command = Serial.readStringUntil(‘\n’); if(command.equals(“init”)){ Serial.println(“init”); } else…

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.

Real time clock DS1302

A Real Time Clock (RTC) module is used to keep track of the current time and date in projects where precise timing is required. Unlike the internal clock of the Arduino, which resets every time the power is turned off, an RTC module has its own built-in battery backup, allowing it to maintain accurate timekeeping even when the Arduino is powered off.