Rock-Paper-Scissor

Rock paper scissor is my fist JavaScript game. It took me 1 week to completed and uploaded. I hope to like it Source Code Download Download I would like to report any bug in the comments Download Or <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>Rock-Paper-Scissor</title> <link rel=”stylesheet”…

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…

Not Just another Robot Arm 6dof

Description: The project involves building a 6-degree-of-freedom (6-DOF) robotic arm from scratch. A degree of freedom refers to the number of variables needed to fully describe the position and orientation of a system. In this case, the robotic arm has six axes of movement: x, y, z, and rotation about each of those axes. The goal is…

Ethernet W5100 Shield

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

Arduino Joystick with servo

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