I hope this video will be helpful for your next science project. Arduino Codes: goo.gl/kHx4ZD Buy Stuff here: Arduino Uno : buy.flyrobo.in/uno Ultrasonic Sensor :buy.flyrobo.in/ultrahc Servo : buy.flyrobo.in/sg90 Male - Male Jumper wire : buy.flyrobo.in/m2m Male - Female Jumper wire :buy.flyrobo.in/m2f
Indian LifeHacker bro urgent hai kal school mey dikhana hai lifi ka project yet not completed becoz samz nii aa raha Kon ra Kon sa ground hai or Kon sa left right
Thank you for your help! I have a correction for the schematic tho. Servo motor's volt pin should be plugged at 5v and sensor to 3.3v. otherwise, the motor would be slow. hope this helps anyone who faced the same slow motor problem as me 🙂
@@vinaykaushik5945 Do not try to discredit this work by presenting another saying it's far better. You'd have just shared your link without your wrong comment
Thank You. I am actually 8th grade and i wanted to learn robotics. Today Finally because of teacher like you I learnt. Thank you once again...... Love from Karnataka
Absolutely Amazing! This is the code for this dustbin: #include //servo library Servo servo; int trigPin = 5; int echoPin = 6; int servoPin = 7; int led= 10; long duration, dist, average; long aver[3]; //array for average void setup() { Serial.begin(9600); servo.attach(servoPin); pinMode(trigPin, OUTPUT); pinMode(echoPin, INPUT); servo.write(0); //close cap on power on delay(100); servo.detach(); } void measure() { digitalWrite(10,HIGH); digitalWrite(trigPin, LOW); delayMicroseconds(5); digitalWrite(trigPin, HIGH); delayMicroseconds(15); digitalWrite(trigPin, LOW); pinMode(echoPin, INPUT); duration = pulseIn(echoPin, HIGH); dist = (duration/2) / 29.1; //obtain distance } void loop() { for (int i=0;i
Dear sir, Project was excellent.Practically usually this kind of big dustbin use at public places and on home & office we usually very small heightened. Anyway appreciate the work. Regards
Nice project but u can make it much cheaper by using arduino nano or attiny 45 in place of uno and in place of servo you can use small dc motor with lid stopper. It will cost you around 300 or less. And to make it more innovative you can use rechargeable battery with a little solar panel to make it more independent. Good work 👍
You are Amazing Indian life hacker I learn everything about electronic project is from you great video I watched your video before from my another account
The best audriuno project and the channel which I liked the most because it has told me how to do it easily and cheaply and shown us the programme most channels will not show us the programmes
@@kunalnagarkoti1841 drive.google.com/drive/u/0/mobile/folders/1xb4cyyzlHGZZU1tExqBZXpE0gnLfE72N?usp=drive_open But if you want to do more Arduino project. Just learn the programming language. It's not that hard. Super simple
Very good ideea , i think you need a camera with artificial inteligence for this . When the camera detect plastic bottle , automatically gives a signal to the servomotor , i guess
Hi bro i hope you are doing well.... So i just wanted to talk with you if it is possible so please let me know on my mail id.... Regards Mr. Indian hacker
Amazing, I was tired of opening the lid of dustbin which takes around 1second, now I just have to buy these electronic components which nearly cost me around 700₹ only. What an idea!
Yes I tried to do this project for my kid, It is so helpful the codes which was send by you. while i running this program i am getting an error message as " exit status 1 Error Compiling for aboard Arduino Uno." Give me ur suggestions..
@@anshjayara2347 If u want prof then please contact my school..my dustin must be in the exhibition lab. INDRAPRASTHA SCHOOLS. Just its quite tricky when we joins wire we need to solder arnd
Will this code work which u hve mentioned in the description ...I asked this because before I had did voice control Arduino project for that I had struggled lot for code . reply
I know it was a year since you commented but would you mind posting a couple links to where I can get the appropriate motion sensor and solenoid online?
Hello sir can I ask some questions or can I now the systematic of that profect? And what are the function of eh systematic diagram that have in your smart trash can
I hope this video will be helpful for your next science project.
Arduino Codes: goo.gl/kHx4ZD
Buy Stuff here:
Arduino Uno : buy.flyrobo.in/uno
Ultrasonic Sensor :buy.flyrobo.in/ultrahc
Servo : buy.flyrobo.in/sg90
Male - Male Jumper wire : buy.flyrobo.in/m2m
Male - Female Jumper wire :buy.flyrobo.in/m2f
Indian LifeHacker bhai muje ye dustbin banana h ...
But mje programming smj nhi aya ....
Circuit to smj gya hu ....
Ho sake to programing smja dijie
#ThankYou#
Indian LifeHacker bro urgent hai kal school mey dikhana hai lifi ka project yet not completed becoz samz nii aa raha Kon ra Kon sa ground hai or Kon sa left right
Thnk bhia mara sciences competition hona wala ha up ka videos bahut accha lagata ha
Bahi can you give me a digram of flysky i6 receiver with apm 2.6 for drone
Thank you for your help! I have a correction for the schematic tho.
Servo motor's volt pin should be plugged at 5v and sensor to 3.3v.
otherwise, the motor would be slow.
hope this helps anyone who faced the same slow motor problem as me 🙂
then motor works automatically dude
Thank you for comment👍
Why servo motor keep working while didn't touch sensor?
@@ttommytaslim6297 ultrasonic sensor is defective
Same with me bro
Just because of this project we got 1st prize in our competition thank you
hi sir how to put aurdino codes please sir tell me
@@ftk_gaming6626 must hve the apps first
ruclips.net/video/0_Hfnl87A9Q/видео.html
It is a working model or not
Yes it is a working model
Not the man we needed but the hero we deserved! Thank you for helping me with my school projects. I credited you in my powerpoint presentation.
this one is far better , smart Automatic Intelligent Sensor Smart Trash Can Dustbin : ruclips.net/video/9RivHtAlDW8/видео.html
@@vinaykaushik5945 Do not try to discredit this work by presenting another saying it's far better. You'd have just shared your link without your wrong comment
Plz send me report of this project
School or college?
Thank You. I am actually 8th grade and i wanted to learn robotics.
Today Finally because of teacher like you I learnt. Thank you once again...... Love from Karnataka
Absolutely Amazing!
This is the code for this dustbin:
#include //servo library
Servo servo;
int trigPin = 5;
int echoPin = 6;
int servoPin = 7;
int led= 10;
long duration, dist, average;
long aver[3]; //array for average
void setup() {
Serial.begin(9600);
servo.attach(servoPin);
pinMode(trigPin, OUTPUT);
pinMode(echoPin, INPUT);
servo.write(0); //close cap on power on
delay(100);
servo.detach();
}
void measure() {
digitalWrite(10,HIGH);
digitalWrite(trigPin, LOW);
delayMicroseconds(5);
digitalWrite(trigPin, HIGH);
delayMicroseconds(15);
digitalWrite(trigPin, LOW);
pinMode(echoPin, INPUT);
duration = pulseIn(echoPin, HIGH);
dist = (duration/2) / 29.1; //obtain distance
}
void loop() {
for (int i=0;i
where do we have to run this program
Arduino software @@coppsycoop2056
@@coppsycoop2056 Arduino IDE
Thank you so much for the new codes
What is the circuit diagram for this code
Very Simple and nice arduino project. Thank for sharing.
You are the future of india brother hatts off
Love from.Pakistan
I became 1st in my state level project competition because of this exact project☺️
My servo motor is turning 360 ' does anyone know what to do ?? N sometimes it is turning automatically can anyone say what to do??
U Don't deserve this
Very Good Dear
this one is far better , smart Automatic Intelligent Sensor Smart Trash Can Dustbin : ruclips.net/video/9RivHtAlDW8/видео.html
@@arunachalammurali1530 Uses mg90s (the black one), not g90.
Thank you bro,very Nice, Easy, attractive and hope you will bring many more for us🇧🇩🇧🇩🇮🇳
Thanx because of your project I got an certificate in my electrical project
can you pls share the code that you used?
Really loved the video! thank you for making it, it was very practical for my every day life to have an automatic bin!
what happen when the battery finieshes?
Kya baat hai bhai ....
Thank you bhai ........
Aap roh geniuse hooo...
💕💕💕💕💕
Bhai Kamal ki hai
Maina bhee banaya hai , working perfectly!
bro did u use the same code???????? if yes send me the code by email to saivamshi2209@gmail.com.......pls
Really it work or not
Sir how to upload arduino file
Arduino Ka konasa application download karana padega
Sir please application ka name batav
Bhai aap ka yeh project mughe bahut pasand aaya real me 👌❣️💞💟❣️💟👌
Because of this I won first prize in a competition. So thank you!!!
Did the code work properly without any problem?
this one is far better , smart Automatic Intelligent Sensor Smart Trash Can Dustbin : ruclips.net/video/9RivHtAlDW8/видео.html
Just because of you we got 3rd prize in our interschool competition thank you
Dear sir,
Project was excellent.Practically usually this kind of big dustbin use at public places and on home & office we usually very small heightened. Anyway appreciate the work.
Regards
Shukriya bhai apki coding ki wajah se project mai mujhe ache marks mile mujhe thanku sirrr
Its working. Thanks you saved me from one of my subject.
seriously
thank you i didnt need to make a dustbin but a automatic door the code helped me out a lot also it gave me more ideas thank you so much
Nice project but u can make it much cheaper by using arduino nano or attiny 45 in place of uno and in place of servo you can use small dc motor with lid stopper. It will cost you around 300 or less. And to make it more innovative you can use rechargeable battery with a little solar panel to make it more independent. Good work 👍
Great Idea 👌
Will there need to made any changes in the code if arduino nano is used?
You are Amazing Indian life hacker I learn everything about electronic project is from you great video
I watched your video before from my another account
Excellent project 👍
The best audriuno project and the channel which I liked the most because it has told me how to do it easily and cheaply and shown us the programme most channels will not show us the programmes
we appreciate your effort on this project....
Aapke is project me kitne paise lega
637
Your videos are brilliant 😎keep up the great work💪
Because of your project I got first prize in my robotics competition
bro wheres the code? can u send it to me??
@@adityakokanay check description
@@adityakokanay without coding will this project works ?
@@kunalnagarkoti1841 how do you even imagine that
@@kunalnagarkoti1841 drive.google.com/drive/u/0/mobile/folders/1xb4cyyzlHGZZU1tExqBZXpE0gnLfE72N?usp=drive_open
But if you want to do more Arduino project. Just learn the programming language. It's not that hard. Super simple
Thank you very much bro. Just iam studying 8th but with your video it success for me😄😄😄😄😄😄
Everytime when i see this video , it helps me a lot :'( ty
can you pls share the code that you used?
This video saves my year..thanks alot 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥❤️❤️❤️❤️
क्या इस प्रोजेक्ट को करते समय आपको किसी त्रुटि का सामना करना पड़ा? क्या सावधानियाँ बरतनी चाहिए? आप कृपया मुझे बताएं।
With the help of the USB 2.0 cable given with the arduino board, connect it with the arduino to the power bank
Heartiest congratulations
this one is far better , smart Automatic Intelligent Sensor Smart Trash Can Dustbin : ruclips.net/video/9RivHtAlDW8/видео.html
Thanks a lot. It was really helpful.
Made my own SmartBin😄😄
Sir can we add lights when the cap opens of the dustbin and when it closes
yes you can add two different color light
💯💯💯💯💯💯💯
This video is awesome we made it for our science fair 100% successful just took 2 to 3 hours
Can I know how you made ppt??
is it possible to distiguish the wastes as a plastic bottle, biodegradable and non-bio?for waste segregation...
Very good ideea , i think you need a camera with artificial inteligence for this . When the camera detect plastic bottle , automatically gives a signal to the servomotor , i guess
The man we needed, we need you man.
working very much perfectly
Super project bro well done ...but in comment session many of them don't like your project but I like your projects
If we use inductive or capacitive sensor instead of ultrasonic sensor. with this same coding does the dustbin will work?
Thanku this helped to be in the state level😊
#include //servo library
Servo servo;
int trigPin = 5;
int echoPin = 6;
int servoPin = 7;
int led= 10;
long duration, dist, average;
long aver[3]; //array for average
void setup() {
Serial.begin(9600);
servo.attach(servoPin);
pinMode(trigPin, OUTPUT);
pinMode(echoPin, INPUT);
servo.write(0); //close cap on power on
delay(100);
servo.detach();
}
void measure() {
digitalWrite(10,HIGH);
digitalWrite(trigPin, LOW);
delayMicroseconds(5);
digitalWrite(trigPin, HIGH);
delayMicroseconds(15);
digitalWrite(trigPin, LOW);
pinMode(echoPin, INPUT);
duration = pulseIn(echoPin, HIGH);
dist = (duration/2) / 29.1; //obtain distance
}
void loop() {
for (int i=0;i
is this the code?
@@sanaaamylobee yes this is code.
:o thanks
Which app you use to do coding
Arduino compiler
The 9v battery connect directly to Ardunio UNO (no need soldering in the jumper wire)?
Hi bro i hope you are doing well.... So i just wanted to talk with you if it is possible so please let me know on my mail id.... Regards Mr. Indian hacker
🤯😱
Wqt badlte waqt nhi lagta aaj aap k subscriber inse jyada hai ☺️big fan bro❣️🙏
Apka bahut bada fan
Ohh bro you replied 🤯🤯🤯🤯🤯
😲😲😲
Thankyou so much....this video was too helpful for my project....😍
Easy and fun project. Thank you!!
pls guide me
Ek number bhai🤙🔥♥️
Please tell me how to make automatic homework machine with aurdino
😂😂😂
Bhai kuch to khud karle hilaega bhi machine se kya ?? Just kidding 😬😬😬😬
search in youtube you will get
i saw many videos about it
Code kaise download krte hai Arduino me wo smj me nahi aaya
@@S.raj3740 download Arduino Uno in your PC or laptop. Then connect and do coding
Amazing project bro... 😍
Amazing, I was tired of opening the lid of dustbin which takes around 1second, now I just have to buy these electronic components which nearly cost me around 700₹ only. What an idea!
Druv u r the best hats off to u👏👏👏
Bro igt me. Bhi aagye....I already know you. ❤❤❤❤❤❤
Thank u.. I make this project.. successfully working.. 👍
Code is not working help
Very nice. It's working perfectly 💯💯💯
Hey my servo is not rotating at all after connection...it's just creating sound....how much vtg did u applied to servo
Yes I tried to do this project for my kid, It is so helpful the codes which was send by you. while i running this program i am getting an error message as " exit status 1
Error Compiling for aboard Arduino Uno."
Give me ur suggestions..
check mine
this one is far better , smart Automatic Intelligent Sensor Smart Trash Can Dustbin : ruclips.net/video/9RivHtAlDW8/видео.html
Thanks bro because I was winning the prize making your project
4th in science models exhibition
could you please tell why ultrasonic sensor is not sensing?
How to load the program on the arduino...?
Tell plz.... Amergency heii.... 😮😨
Arduino ite ke soft ware ko download kr k
Bro keep it up I tried it and it worked thank you 😁😁👏
really it worked?
What serial port did you use ?
OK so you fixed the arduino board and 9v cell inside the dustbin... Great 👏
This was so intuitive. Where did you learn the foundations? can you please share the links?
this one is far better , smart Automatic Intelligent Sensor Smart Trash Can Dustbin : ruclips.net/video/9RivHtAlDW8/видео.html
Thank you so much bhai💪👑💗keep it up😎😎
Why my dustbin cannot close the lid automatically
Awesome awesome awesome 👏😎.
Sir in need some help so how can I contact to you?
Wow...your are great!!👍👍
Sir tell us in next video how to make a tesla coil step by step
Tesla coil...
Sala
Sr.... so amazing arduino project
Sir make a project on voice controled Home Automation
Yes
this one is far better , smart Automatic Intelligent Sensor Smart Trash Can Dustbin : ruclips.net/video/9RivHtAlDW8/видео.html
thanks this helps a lot
Which software do you have in your laptop while adding the coding in arduino .please reply fast
Bhai Arduino software www.arduino.cc/en/Main/Software
Arduino ide
Code not working... showing some errors
HOLAAA NECESITP AYUDA , una vez conectado y cargado el servo no deja de funcinar
0:56 seriously arduino uno in dustbin 😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂😂
Lol😂😂
Wow very good idea 😍😍😍
i had ordered my material. are u sure my expenditure on this would be worth-full.
Is the website which he linked in description safe??
@@anshjayara2347 Yes
@@anshjayara2347 Its really awsm everything was working and even I made this project myself and was worthfull.
@@anshjayara2347 If u want prof then please contact my school..my dustin must be in the exhibition lab. INDRAPRASTHA SCHOOLS. Just its quite tricky when we joins wire we need to solder arnd
I really love your video!! It is vry interesting and so understandful
Will this code work which u hve mentioned in the description ...I asked this because before I had did voice control Arduino project for that I had struggled lot for code
. reply
Just write the code yourself or search Google for base code. That you can modify as you need
dude you are a great inspiration to me "HATS OFF"
You could achieve the same thing with a motion sensor and a solinoid which would cost much less than this.
I know it was a year since you commented but would you mind posting a couple links to where I can get the appropriate motion sensor and solenoid online?
este video me ha aprobado tecnologia gracias
Sir please can you make drone with arduino and GPS and telemetry plz sir
Sir mene bhi bna deya apne school m❤😮😊
3:13
👌😉👌😉👌😉👌
Thanks
Very clear project and so easy
Sir, urduino based agriculture system
You are my hero I like your every video
I am doing this as atal project sure it will come say
My servo motor is turning 360 ' does anyone know what to do ?? N sometimes it is turning automatically can anyone say what to do??
Can we use normal connecting wires in the place of,male -male and male-female jumper wires
More faster way is to keep the dustbin without liid
Thanks bro my dustbin worked
The code didn’t work with me 😩
Bhaiya i am your new subscriberer
Ye koode ko dustbin ke sensor ke aage lane mai tym waste krne se acha mai paddle se hi n khol lu😂...GTFO
@k.p anurag 😂🙌
Hello sir can I ask some questions or can I now the systematic of that profect? And what are the function of eh systematic diagram that have in your smart trash can
Amazing Project...Just wanted to know how are u opening and closing the lid, can u please explain how does it happen??..Thanks in Advance
The 9 V battery does not seem to be a correct source of power. It is working fine with USB but not with 9v battery. Please help!
Same here.
Koi solution mila apko?
Excellent project and idea, rate of components may change.
thank you very much
very helpfull for begginers
Very simple I made it and it is working fine
Can you tell me how you copied the code please?