3 Simple Arduino Projects for beginners

preview_player
Показать описание
Hello Friends, in this video i have shown 3 arduino projects for beginners which are easy to make and interesting. you can find detailed information about these projects by seeing the tutorials from the links below.

Part Links (Global) :

(India):

Gear i Use:

Рекомендации по теме
Комментарии
Автор

Keep the hard work up man... good content

sallymatar
Автор

thanks man it's awsome u are perfect

parsanazari
Автор

When I opened the code it is showing that "NO File Preview".

CyberBotX
Автор

Arduino:1.8.12 (Windows 10), Scheda:"Arduino Uno"

Lo sketch usa 4364 byte (13%) dello spazio disponibile per i programmi. Il massimo è 32256 byte.
Le variabili globali usano 250 byte (12%) di memoria dinamica, lasciando altri 1798 byte liberi per le variabili locali. Il massimo è 2048 byte.
Errore durante il caricamento dello sketch

Questo report potrebbe essere più ricco di informazioni abilitando l'opzione
"Mostra un output dettagliato durante la compilazione"
in "File -> Impostazioni"

christianchilese
Автор

In the third project, how did you connect all the connecting wires with the breadboard ??? Can you please explain

AH-miws
Автор

hi. where can i see clearly the code for the 1st one? Thanks in advance

jancarlostanghal
Автор

i copy the code....

it does'nt work...

arsenewavreille
Автор

Please can you make the code for the first project bolder to see...

gbdsoundzchannel
Автор

Thanks for the tutorials and giving me some ideas to make! Nice videos.

dayakararaot
Автор

Can anyone share the code for measure water temperature using Arduino..bcz I'm not able to open this link

akankshakandar
Автор

What is the name of the cables that you use in the first project

komiku
Автор

for the second one, it would be nice if the lock can still be used manually because after putting the servo I do not think you will be able to lock the door from inside. I may be wrong tho

larsnz
Автор

Everything is nice but can you give the code of these projects in the description as others do. I also like to make it that's why.

CyberBotX
Автор

hi bro i need code for this project, first project == distance calculator.

VivekKumar-uzqe
Автор

ur vid is good just can u show me where to put the wires ur self cause i just started and i cant complete any of them

yevinliyanage
Автор

please make the download code in the caption

ondrejrejzek
Автор

I need help. When ever I plug it in the light just dies off.

LNSBK
Автор

the 2nd one will not work with heavy locks tho

khadijahnoor
Автор

// defines pins numbers
const int trigPin = 9;
const int echoPin = 10;
// defines variables
long duration;
int distance;
void setup() {
pinMode(trigPin, OUTPUT); // Sets the trigPin as an Output
pinMode(echoPin, INPUT); // Sets the echoPin as an Input
Serial.begin(9600); // Starts the serial communication
}
void loop() {
// Clears the trigPin
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
// Sets the trigPin on HIGH state for 10 micro seconds
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
// Reads the echoPin, returns the sound wave travel time in microseconds
duration = pulseIn(echoPin, HIGH);
// Calculating the distance
distance = duration * 0.034 / 2;
// Prints the distance on the Serial Monitor
Serial.print("Distance: ");
Serial.println(distance);
delay(10);
}

notadam
Автор

I wish arduino can detect corona virus like a sniffing dog.

mr.RAND