such a great topic explained step-by-step thanks a lot 🙌 i have a doubt at @9:23 , we are connecting phone to our components for power supply right? can we use laptop or direct power as source?
@chethanchaithanya176311 ай бұрын
Thank you bro❤
@AnithaRaja_ Жыл бұрын
bro can you share the tools required in this project
@GireeshBalan-b5y Жыл бұрын
Dittiyal
@insidegamingwithrl1246 Жыл бұрын
hello bro so thistakes 12 hours to rotate and feed the fishes right
@insidegamingwithrl1246 Жыл бұрын
Hello bro how does this work
@insidegamingwithrl1246 Жыл бұрын
Can we do this using adruino nano
@plbijukumarpavithram Жыл бұрын
bro can we use adruino nano
@munmunmondal2937 Жыл бұрын
Thank you so much 😊😊
@slcomedyanimations1123 Жыл бұрын
How do I test run the motor to see if the code works?
@samrat.2211 Жыл бұрын
Thank you so much for help me 👍😐
@Nomankhan-qd4hg Жыл бұрын
Aye duity masinr nam ki
@AkhilscollectionOfficial Жыл бұрын
kitne seconds ke baad bottle flip karta hai ? Please reply
@Arnab13128 Жыл бұрын
Thanks 🤙
@maheshwari7388 Жыл бұрын
Super bro👌
@maka4320 Жыл бұрын
Bro kottur kovil kodai video podunga
@ramars803 Жыл бұрын
Arumai
@wowyummyyy Жыл бұрын
LIKE 👍🏿👍🏾👍🏽👍🏼👍🏻👍 💯💢💯💢💯🤩🤩🤩
@mageshwarisaravanan6535 Жыл бұрын
Same it's me
@chithra908010 ай бұрын
Akka naan chithra
@mdfaizanahmed249 Жыл бұрын
Theres no need of rtc for setting time?
@shahrultanningbina9773 Жыл бұрын
Tq bro
@ManiKandan-vf8lw Жыл бұрын
Thank You
@vinithashankar7081 Жыл бұрын
idhu enga kovil...
@chithra908010 ай бұрын
Adhu engalukkum kulasamy kovil dhan
@chithra908010 ай бұрын
Neenga endha ooru nu therinjikkalama???
@maka4320 Жыл бұрын
Samakodai video podunga bro
@selvakumarselvakumar4331 Жыл бұрын
Selvakumar a kanum pro
@maka4320 Жыл бұрын
Samakodai video podunga bro
@nothingbut-manojselfie1285 Жыл бұрын
Kandippa👍🏻
@maka4320 Жыл бұрын
adutha video podunga bro
@pearls_55 Жыл бұрын
Kummi pattu podunga anna I'm waiting
@nothingbut-manojselfie1285 Жыл бұрын
Ok
@thennagarasamayal Жыл бұрын
Kummi pattu link kzbin.info/www/bejne/jajJmaaPZqp3ipo
@rameshmokhashi8059 Жыл бұрын
TQ ❤
@maka4320 Жыл бұрын
Bro intha varusam kovil kodai video Podalliaya
@nothingbut-manojselfie1285 Жыл бұрын
Edit panni podanum bro
@maka4320 Жыл бұрын
Bro kovil kodai ennaiku
@nothingbut-manojselfie1285 Жыл бұрын
Yes bro😌
@chithra908011 ай бұрын
Vaikasi month 2nd tuesday
@random__world__ Жыл бұрын
Thanku❤
@hm.7414 Жыл бұрын
may i ask is there any more specific type of arduino uno that you used?
@nothingbut-manojselfie1285 Жыл бұрын
No its normal arduino uno
@Hybridox-4 Жыл бұрын
Only 1 video in KZbin for this problem Thanks
@nothingbut-manojselfie1285 Жыл бұрын
😇
@pratikshanikam2503 Жыл бұрын
Code upload me problem aa Raha a
@nothingbut-manojselfie1285 Жыл бұрын
Automatic Fish Feeder Code Below 👇 #include <Servo.h> Servo myservo; int pos = 0; long FISHFEEDER = 5000; // 12 hours between feeding long endtime; long now; void setup() { myservo.attach(7); myservo.write(0); delay(15); } void loop() { now = millis(); endtime = now + FISHFEEDER; while (now < endtime) { myservo.write(0); delay(2000); now = millis(); } for (pos = 0; pos < 180; pos += 1) { myservo.write(pos); delay(15); } for (pos = 180; pos >= 1; pos -= 1) { myservo.write(pos); delay(15); } }