Η Κρήτη

Η Κρήτη είναι το μεγαλύτερο και πολυπληθέστερο νησί της Ελλάδας και το πέμπτο σε έκταση μεγαλύτερο της Μεσογείου, μετά τη Σικελία, τη Σαρδηνία, την Κύπρο και την Κορσική. Πρωτεύουσα και μεγαλύτερη πόλη της είναι το Ηράκλειο, το οποίο είναι έδρα της περιφέρειας Κρήτης που συμπεριλαμβάνει γειτονικά νησιά και νησίδες. Με πληθυσμό 623.065 κατοίκων, περίπου 160 χιλιόμετρα νότια της ελληνικής ηπειρωτικής χώρας και εκτεινόμενη από τα δυτικά προς τα ανατολικά, βρέχεται…

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…

Covid-19

Ο Κορονοϊός είναι μια αρρώστια που την παθαίνουν μόνο οι μεγάλη σε ηλικία(από 30 και πάνω).Ο Κορονοϊός άρχισε αρχικά από την Ουχάν. Επίσης είναι και πολύ μεταδοτικός.Στις αρχές του Φεβρουαρίου ένας άντρας περπατούσε στο δρόμο. Καθως περπατούσε ξαφνικά λιποθύμησε.Τοτε ήταν η στιγμή που η ανθρωπότητα ήρθε αντιμέτωπη με έναν πολύ δυνατό ιό.Μετα από έναν μηνά…

Ο διπλός Πέλεκυς -The double axe

Why the double axe? Because it carried a hidden meaning within the Minoan Civilization of Crete —the very place I call home. The double axe (labrys) held a secret and profound significance for the Minoans. Here are some additional insights: Mystical Origins: The labrys was not merely a functional tool; it carried mystical connotations. Its origins trace back…

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.

SD card Module

Ever wanted to give your Arduino project some long-term memory? SD card modules are perfect for that! They allow you to read and write data to an SD card, which is ideal for data logging, storing configuration files, or even playing audio files.

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…