Can you drop the link for the pull-down resistor and what type did you use?
@sudhinkrishnav9 ай бұрын
It's awesome ❤ i like it
@Science_4U_9 ай бұрын
Thank you dear friend..😊❤
@Junebee110 Жыл бұрын
What jumper wire did u use? Male to female or male to male?
@Science_4U_ Жыл бұрын
Hi friend, that is a male to male jumper wire..🙂
@cyndiamoses5042 Жыл бұрын
Wow awesome👍
@Science_4U_ Жыл бұрын
Thank you..🥰🙂
@sudhinkrishnav9 ай бұрын
Could you add the circuit diagram in the description. Please. Because i want to make this for my College Project. I'm from india 🇮🇳.
@Science_4U_9 ай бұрын
Hi friend. I have made the circuit diagram now and it can be downloaded from the following link... drive.google.com/file/d/1f6iQaUbo-zd5O4ObXTk4Xh9Syc3Prvh-/view?usp=sharing
@sudhinkrishnav9 ай бұрын
Thank you, thank you so much ❤️🫂
@SkinDeep-qb3vx9 ай бұрын
Thank you soooo much i am making this for my school project i love it thank you sooooo much
@Science_4U_9 ай бұрын
Okay dear friend. Happy to know thst you liked this project..❤️
@leejaj Жыл бұрын
Super 👌
@Science_4U_ Жыл бұрын
Thank you...🥰
@kundanendeavoursindia2987 Жыл бұрын
Provide us the link to buy the equipment used
@Science_4U_ Жыл бұрын
Yes sure... 1. Arduino Uno: amzn.eu/d/5IlDq9r 2. 9V battery: amzn.eu/d/34SPqIR 3. Rocker switch : amzn.eu/d/1BBajCn 4. Jumper wires : amzn.eu/d/7uemocG 5. Buzzer : amzn.eu/d/dJmOUt4 6. LED light : amzn.eu/d/gyg2hW1 7. Toy house : amzn.eu/d/31dpNmM I have updated the links in the description section also.
@Tin_Sbyl9 ай бұрын
sir can we use arduino uno for the code ?
@Science_4U_9 ай бұрын
Yes friend of course.. I have used Arduino uno only in this project...
@Tin_Sbyl9 ай бұрын
sir can you upload the circuit diagram. Thank You
@Science_4U_9 ай бұрын
Hi friend. The circuit diagram can be downloaded from the following link.. drive.google.com/file/d/1f6iQaUbo-zd5O4ObXTk4Xh9Syc3Prvh-/view?usp=sharing
@tjsmusicandgaming7845 Жыл бұрын
Can you reupload that code
@sanalatif Жыл бұрын
How can we do the code?
@Science_4U_ Жыл бұрын
Hi..You have to follow the steps given below. 1. Download code to your PC or laptop from the google drive link given in the description box. 2. Download and install Arduino IDE software to your PC/laptop. 3. Connect arduino uno to your PC/laptop using usb cable and upload the code to arduino.
@Science_4U_ Жыл бұрын
I have shown in the video how to upload code to arduino after giving all the connections.
@Science_4U_ Жыл бұрын
I hope I have answered your question. Please ask if you have further doubts🙂
@JeevanandhaJeevanandha-ug6vg Жыл бұрын
Sir can you send circuit diagram
@Science_4U_9 ай бұрын
Hi dear friend. The circuit diagram can be downloaded from the following link.. drive.google.com/file/d/1f6iQaUbo-zd5O4ObXTk4Xh9Syc3Prvh-/view?usp=sharing
@VinKrishSolutions Жыл бұрын
Super😍👌👌
@Science_4U_ Жыл бұрын
Thank you..🥰🙂
@tjsmusicandgaming7845 Жыл бұрын
Bro that code of yours is not opening
@Science_4U_ Жыл бұрын
Hi friend..I don't know why it is not opening. For me, I am still able to download and open it. Anyways, I will paste the code below. You can simply copy it and paste in a new sketch in IDE software and save it.. #define LED 13 //LED #define BUZ 12 //BUZZER #define TRIG 8 //TRIGGER int buttonState = 0; void setup() { pinMode(LED, OUTPUT); pinMode(BUZ, OUTPUT); pinMode(TRIG, INPUT); } void loop() { buttonState = digitalRead(TRIG); if (buttonState == HIGH) { // turn LED & BUZZER ON & OFF 50 times: for (int i=0; i