Ardunio sikhne ke liye isse achchha platform kahi nahi milega. Thank you so much sir saraai baate samjh me aayi apki bahut hi achha lagaa apka video. Sir please aise hi banate rahe non- engineer ke liye. Thank again . Sir
mai doctor hu lekin bahut se devices aisi hai jinhe ham doctors ko chalana hota hai isaliye bahut kam electronic ki janakari nahi hoti hai lekin apne bahut achchi tarah se electronics ke bare me samjaha diya hai / dhanyavad /
Sir bahoot bahoot dhanyawaad detailed explanation ke liye, I have been huting for arduino videos for quite some time but I can say this is one of the best video I have gone through, normally I hate watching long videos, but this one was superb, when 1 hrs and 20 min passed I didn't notice. I am also going through others videos of yours also and will remain in my library for ever. Will get to you soon with some doubts. Pranaam Sir.
You are absolutely gorgeous. Keep it up. I haven't seen a single video either in english or hindi as good as yours. Really liked it. Keep your good work flowing.
Honestly of all the videos i have seen on the web.... ure tutorial is the best...so easy to understand and so comprehensive... i really understood so much about Arduino...thanks a lot brother
if (Status 800) { num++; digitalWrite(LED, HIGH); } } else ; { digitalWrite(LED, LOW); } ye hay mera coding.. isme may ek lasor ka use kiya hay. aur analog read se LDR ko read kiya hay.. isi liya 900 ka use kiya.
nice and clear explanation. I am interested in robotics and technology but i am not that knowledgeable in this category. Thanks a lot. Keep up the good work!!😀😀
Sir ap k samjane ka andaz boht he acha hai or jalde samajh me aa jata hai PLZ sir Atmega or pic microcontrollers k proguraming par as tarha ke koi tafsele video upload karay jis tarah ke ye arduino wale video hai THANKS
Hello sir.. this vedio was based on Arduino and is helpful. I also want to learn initialisation in stm ucontroller of ARM. pls sir try to make vedios on stm ucontroller
#include #include #include #include //To create PWM signals we need this lybrary const uint64_t pipeIn = 0xE8E8F0F0E1LL; //Remember that this code is the same as in the transmitter RF24 radio(9, 10); //CSN and CE pins // The sizeof this struct should not exceed 32 bytes struct Received_data { byte ch1; byte ch2; byte ch3; byte ch4; byte ch5; byte ch6; byte ch7; }; Received_data received_data; Servo channel_1; Servo channel_2; Servo channel_3; Servo channel_4; Servo channel_5; Servo channel_6; Servo channel_7; int ch1_value = 0; int ch2_value = 0; int ch3_value = 0; int ch4_value = 0; int ch5_value = 0; int ch6_value = 0; int ch7_value = 0; void reset_the_Data() { // 'safe' values to use when NO radio input is detected received_data.ch1 = 0; //Throttle (channel 1) to 0 received_data.ch2 = 127; received_data.ch3 = 127; received_data.ch4 = 127; received_data.ch5 = 0; received_data.ch6 = 0; received_data.ch7 = 0; } /**************************************************/ void setup() { //Attach the servo signal on pins from D2 to D8 channel_1.attach(2); channel_2.attach(3); channel_3.attach(4); channel_4.attach(5); channel_5.attach(6); channel_6.attach(7); channel_7.attach(8); //We reset the received values reset_the_Data(); //Once again, begin and radio configuration radio.begin(); radio.setAutoAck(false); radio.setDataRate(RF24_250KBPS); radio.openReadingPipe(1,pipeIn); //We start the radio comunication radio.startListening(); } /**************************************************/ unsigned long lastRecvTime = 0; //We create the function that will read the data each certain time void receive_the_data() { while ( radio.available() ) { radio.read(&received_data, sizeof(Received_data)); lastRecvTime = millis(); //Here we receive the data } } /**************************************************/ void loop() { //Receive the radio data receive_the_data(); //////////This small if will reset the data if signal is lost for 1 sec. ///////////////////////////////////////////////////////////////////////// unsigned long now = millis(); if ( now - lastRecvTime > 1000 ) { // signal lost? reset_the_Data(); //Go up and change the initial values if you want depending on //your aplications. Put 0 for throttle in case of drones so it won't //fly away } ch1_value = map(received_data.ch1,0,255,1000,2000); ch2_value = map(received_data.ch2,0,255,1000,2000); ch3_value = map(received_data.ch3,0,255,1000,2000); ch4_value = map(received_data.ch4,0,255,1000,2000); ch5_value = map(received_data.ch5,0,1,1000,2000); ch6_value = map(received_data.ch6,0,1,1000,2000); ch7_value = map(received_data.ch7,0,255,1000,2000); //Creathe the PWM signals channel_1.writeMicroseconds(ch1_value); channel_2.writeMicroseconds(ch2_value); channel_3.writeMicroseconds(ch3_value); channel_4.writeMicroseconds(ch4_value); channel_5.writeMicroseconds(ch5_value); channel_6.writeMicroseconds(ch6_value); channel_7.writeMicroseconds(ch7_value);
RO machine auto maization keliye arduino use karna chahta hu.. to aapka contact mil sakta hai? jaise water TDS down ho jaye to water mixing hona calu ho jaye aisa programme dc 24volt ka pump on off ho sakta hai?
sir kya ap 2 or 4 digit digit 7 segment ke counter programing samjha sakte hay.. plz.. matlab same just push button press karne se 1 no karke increase hoga.. ye 2 or 4 digit 7 segment kayse karunga.. please help me sir.
Sir ap k samjane ka andaz boht he acha hai or jalde samajh me aa jata hai PLZ sir Atmega or pic microcontrollers k proguraming par as tarha koi tafsele video upload karay jis tarah ke ye arduino wale video hai sir reply zaroor kaena THANKS
Main ak problm me hu Ak code dwnload kiya net se (8×40 calender clock)youtube pe dekhaya 3/4min kavideo hai Us video dekh kar maine code liya To serial monitor par likha aa raha hai RTC not running
Sir muje mobile se Arduino program karna he mere pas pc ya laptop nahi he or me Arduino me mobile app se program uplod karta hu to error batata he to usake liye kya karu
Sir ji mujhe aapki ek help cahiya Maine Arduino rfid door lock banaya h. usme mujhe rfid card ek months access dena h matlab us ek month ki access khatam hone ke baad rfid card se door na open ho. Aap mujhe bata sakte ho uske programming kaise karni hogy plz help. I am waiting your reply. Plz koi video bano Thank you
hiii gm,,,,,,,,, jii me ek arduino project bana raha hu jisme muse eisa input function chahiye jisme 5 second tak butun input deni hai... usse jyada 6 second ki input mile to use ignore kar de
Hi sir, I learned a lot from your videos. I tried making a circuit with multiple leds and the uploading was done successful but the circuit didn't blow.
sir may ek counter banaya hu jo ki button press karne se ek ek karke increase hota hoy.. but button press karke rakhne se o 1 ke bad 1 count karte ja ta hay.. may chata hu ki ek bar button press karne se 1 + he count hoga chahe o kitni he der tak button ko press karke rakhu.. please help me out sir..
Sir i need your help I want to two arduino programming code merge I want to make black line follower by using analog pins and mobile control car using Bluetooth hc-05. I have both codes .
Sir mera ek doubt hai . mnay kuch 7 segments display programs may dekha tha ki jha unhone LOW likha vo leds ON ho rhi thi , Mnay us program ko 123d adruino simulation paar bhi run kiya wha bhi jo LED ko LOW mila tha wahi ON ho rhi thi but jaab mnay implement kiya taab vo LED on ho rhi thi jisme mnay HIGH diya . Aapne bhi ON krne ke liye HIGH diya hai . CAn u give me ur email i want to contact you regarding this . THANK YOU BRILLIANT EXPLANATION SOLVED ALL MY DOUBTS REGARDING PINS AND BREADBOARD . :)
sir ap hot acha samjhaty hein
ap jaisa aj tak kisi ny nae samjhaya
allah ap ko sehat dy
Salute hia sir aapko because itne time me itni knowledge free me, I have never been before..... Well done and keep going
@Electro Mentor 4
Ardunio sikhne ke liye isse achchha platform kahi nahi milega. Thank you so much sir saraai baate samjh me aayi apki bahut hi achha lagaa apka video. Sir please aise hi banate rahe non- engineer ke liye. Thank again . Sir
you are cool sir apne ek he video me sabhi electronic ka knowledge dediya vo bhi ekdam acche tarike se . thank you so much
bahut hi detailed explaination hai sir basics ka everything u have explained clearly
best video series by the expert in robotics and it is usefull for those student who haven't familiar with robotics and who have familiar as well....
mai doctor hu lekin bahut se devices aisi hai jinhe ham doctors ko chalana hota hai isaliye bahut kam electronic ki janakari nahi hoti hai lekin apne bahut achchi tarah se electronics ke bare me samjaha diya hai / dhanyavad /
Very good style of teaching no need to know digital electronic ,,
Apka video dekh kar khus hua bahut badiya banaya hai apne.
Sir bahoot bahoot dhanyawaad detailed explanation ke liye, I have been huting for arduino videos for quite some time but I can say this is one of the best video I have gone through, normally I hate watching long videos, but this one was superb, when 1 hrs and 20 min passed I didn't notice. I am also going through others videos of yours also and will remain in my library for ever. Will get to you soon with some doubts. Pranaam Sir.
Very good lecture
You are absolutely gorgeous. Keep it up. I haven't seen a single video either in english or hindi as good as yours. Really liked it. Keep your good work flowing.
Thank sir.. I have been using arduino since 3 years.. I was just copy pasting sketches..
Now I understood coding..
Hi where are you from ?? If in Karnataka reply me I want to develop a small machine using UNO
@@rakshithar4926 ಹೌದು. ನಾನು ಕನ್ನಡದವನು.. ಚಿಕ್ಕಮಗಳೂರಿನವನು.. ಏನಾದರೂ ಸಹಾಯ ಬೇಕೇ ?
@@manjunathar81 ತುಂಬಾ ಖುಷಿ ಆಯ್ತು ಸರ್, ನಾನು ಮತ್ತು ನನ್ನ ಸ್ನೇಹಿತ ಸೇರಿ ಒಂದು ಪ್ರೊಜೆಕ್ಟ್ ತಯಾರಿಸಿದ್ದೇವೆ
@@manjunathar81 have some confuse to connect colour recognized sensor to UNO board can you please help me. Please give you number sir
@@rakshithar4926 9008472640
sir you are a best teacher in robotics.
mja aa gya.... waah waah janab science ke mje hi alag hain
Learn Arduino In Hindi
th-cam.com/video/VA_UegoHMBQ/w-d-xo.html
Full Tutorial Series
Honestly of all the videos i have seen on the web.... ure tutorial is the best...so easy to understand and so comprehensive... i really understood so much about Arduino...thanks a lot brother
You are great teacher, please keep it up 👍🏻👍🏻
It was really helpful...never felt wasting time on it
What a video sir mja aa gya, simplicity with perfaction..
Sir Kamal ja lecture tha (Paisa vasool
Very nice explanation ,& nicely explained Tks for video
Such a Very Very Helpful video, Thank you for sharing Sir..
it's a superb tutorial about this topic i found ever.many many thanks sir
awesome :) great, excellent videos series improved my knowledge
Great Knoledge sir Teaching method superb
Your way to explain is outstanding. I really liked it,
Regard as a good teacher
A awesome video it will improve our knowledge
Fabulous video my all doubts are clear. Thank you very much sir
Excellent method of teaching
Ap jaisa koi nahi samjata
bhut easy tarike se bataya hai
bhut accha sir
Great and excellent videos series improved my knowledge
good job sir you explain very well keep continues your job so we learn very well
Sahi main sir
Aap toh bahut student ki help karenge
best, detailed and conceptual video👍🏻👍🏻👏👏
Sir I think you should put add to get some amount of revenue ,
As you have uploaded this big level content free .. thankyou very much...,🤗
very good video sir, just finished one, thanks a lot for posting
Very good explanation
Great job sir.
Big respect to you Love from pakistan
if (Status 800)
{
num++;
digitalWrite(LED, HIGH);
}
}
else ;
{
digitalWrite(LED, LOW);
}
ye hay mera coding.. isme may ek lasor ka use kiya hay. aur analog read se LDR ko read kiya hay.. isi liya 900 ka use kiya.
Thank You Sir.
Ab mai second part dhekne ja raha hu
Sir your explanation is so nice
Very helpful series!! Thank you sir!
nice one! well i do my arduino projects but the concepts had not much clear and your video helped to understand those concept
nice and clear explanation. I am interested in robotics and technology but i am not that knowledgeable in this category. Thanks a lot. Keep up the good work!!😀😀
Aapne inta acha se samjhya hai sir thank you so much
Sir ap k samjane ka andaz boht he acha hai or jalde samajh me aa jata hai
PLZ sir Atmega or pic microcontrollers k proguraming par as tarha ke koi tafsele video upload karay jis tarah ke ye arduino wale video hai
THANKS
Sir you have explained everything very clearly thankyou
Aap ne jaisa kaha ki 10 cm agey chalna hai are for rukna hai are fir wapas 10 cm ana hai to iske liye kaun sa sensor lagana hoga
Very Very Helpful Video Sach me Please Upload More Sir
Awesome explanation sir 👏👏👏👏very helpful for beginners ty so much Sir for sharing this video
Plz do such type of videos
Hello sir.. this vedio was based on Arduino and is helpful. I also want to learn initialisation in stm ucontroller of ARM.
pls sir try to make vedios on stm ucontroller
Nice tutorial, five star rating...
Thanks sir aap bahut accha samjhate hai
very nice sir .......very gud and complete information
very nice, simple and clear clarification
#include
#include
#include
#include //To create PWM signals we need this lybrary
const uint64_t pipeIn = 0xE8E8F0F0E1LL; //Remember that this code is the same as in the transmitter
RF24 radio(9, 10); //CSN and CE pins
// The sizeof this struct should not exceed 32 bytes
struct Received_data {
byte ch1;
byte ch2;
byte ch3;
byte ch4;
byte ch5;
byte ch6;
byte ch7;
};
Received_data received_data;
Servo channel_1;
Servo channel_2;
Servo channel_3;
Servo channel_4;
Servo channel_5;
Servo channel_6;
Servo channel_7;
int ch1_value = 0;
int ch2_value = 0;
int ch3_value = 0;
int ch4_value = 0;
int ch5_value = 0;
int ch6_value = 0;
int ch7_value = 0;
void reset_the_Data()
{
// 'safe' values to use when NO radio input is detected
received_data.ch1 = 0; //Throttle (channel 1) to 0
received_data.ch2 = 127;
received_data.ch3 = 127;
received_data.ch4 = 127;
received_data.ch5 = 0;
received_data.ch6 = 0;
received_data.ch7 = 0;
}
/**************************************************/
void setup()
{
//Attach the servo signal on pins from D2 to D8
channel_1.attach(2);
channel_2.attach(3);
channel_3.attach(4);
channel_4.attach(5);
channel_5.attach(6);
channel_6.attach(7);
channel_7.attach(8);
//We reset the received values
reset_the_Data();
//Once again, begin and radio configuration
radio.begin();
radio.setAutoAck(false);
radio.setDataRate(RF24_250KBPS);
radio.openReadingPipe(1,pipeIn);
//We start the radio comunication
radio.startListening();
}
/**************************************************/
unsigned long lastRecvTime = 0;
//We create the function that will read the data each certain time
void receive_the_data()
{
while ( radio.available() ) {
radio.read(&received_data, sizeof(Received_data));
lastRecvTime = millis(); //Here we receive the data
}
}
/**************************************************/
void loop()
{
//Receive the radio data
receive_the_data();
//////////This small if will reset the data if signal is lost for 1 sec.
/////////////////////////////////////////////////////////////////////////
unsigned long now = millis();
if ( now - lastRecvTime > 1000 ) {
// signal lost?
reset_the_Data();
//Go up and change the initial values if you want depending on
//your aplications. Put 0 for throttle in case of drones so it won't
//fly away
}
ch1_value = map(received_data.ch1,0,255,1000,2000);
ch2_value = map(received_data.ch2,0,255,1000,2000);
ch3_value = map(received_data.ch3,0,255,1000,2000);
ch4_value = map(received_data.ch4,0,255,1000,2000);
ch5_value = map(received_data.ch5,0,1,1000,2000);
ch6_value = map(received_data.ch6,0,1,1000,2000);
ch7_value = map(received_data.ch7,0,255,1000,2000);
//Creathe the PWM signals
channel_1.writeMicroseconds(ch1_value);
channel_2.writeMicroseconds(ch2_value);
channel_3.writeMicroseconds(ch3_value);
channel_4.writeMicroseconds(ch4_value);
channel_5.writeMicroseconds(ch5_value);
channel_6.writeMicroseconds(ch6_value);
channel_7.writeMicroseconds(ch7_value);
}//Loop end
good content bro keep going keep helping n sharing your gem like knowledge with others ty for everythin includ matlab
Its been vry useful for me., seriously thanks to sir
RO machine auto maization keliye arduino use karna chahta hu.. to aapka contact mil sakta hai? jaise water TDS down ho jaye to water mixing hona calu ho jaye aisa programme
dc 24volt ka pump on off ho sakta hai?
Wahh sir kya baat hai mera lakho pranam jai hind
sir kya ap 2 or 4 digit digit 7 segment ke counter programing samjha sakte hay.. plz.. matlab same just push button press karne se 1 no karke increase hoga.. ye 2 or 4 digit 7 segment kayse karunga.. please help me sir.
EK VOLTAGE REGULATOR IC (7805) PE HUM MAX 35V DE SAKTE HE TO ARDUINO KE VOLTAGE REGULATOR KI MAX VOLTAGE INPUT KITNE REHTE H
Really very good explanation sir..Thankyou soo much sir😍😍
very useful tutorial..
love from Bangladesh ♥
Sir pls explain how to programme pic16f84a ic on bread board
Sir ap k samjane ka andaz boht he acha hai or jalde samajh me aa jata hai
PLZ sir Atmega or pic microcontrollers k proguraming par as tarha koi tafsele video upload karay jis tarah ke ye arduino wale video hai sir reply zaroor kaena
THANKS
Main ak problm me hu
Ak code dwnload kiya net se
(8×40 calender clock)youtube pe dekhaya 3/4min kavideo hai
Us video dekh kar maine code liya
To serial monitor par likha aa raha hai RTC not running
sir USB Bluetooth(computer ka) ko arduino k sath kaise connect kar sakte hai???
sir ardino main program Purana delete karna padta hai ya program uske upar chadh Jata he
Sir project size k hisab se ardino lagata Hai.... Ya 1 hi chalaega
ya iske liye dc 12 vold 1amp hi chahiye hoga?
sir the 13th pin of arduino uno already have resistor built in then why u have used external resistor
Sir, aap bahut aasan tarikese samazate hai.?
आप कौनसे शहर में रहने वाले है?
in place of red led, yellow led......can we write red ,yellow, green only?
good vdo
u can get basic knowledge,
Sir muje mobile se Arduino program karna he mere pas pc ya laptop nahi he or me Arduino me mobile app se program uplod karta hu to error batata he to usake liye kya karu
Sir main ne ap se bohot kuch sekha than you sir
Sir ji mujhe aapki ek help cahiya
Maine Arduino rfid door lock banaya h.
usme mujhe rfid card ek months access dena h matlab us ek month ki access khatam hone ke baad rfid card se door na open ho.
Aap mujhe bata sakte ho uske programming kaise karni hogy plz help.
I am waiting your reply.
Plz koi video bano
Thank you
Dear Sir How can we copy a sketch from an ATMega328p to Arduino UNO and than copy the same code to another ATMega328p Micro-controller please help
hiii gm,,,,,,,,,
jii me ek arduino project bana raha hu jisme muse eisa input function chahiye jisme 5 second tak butun input deni hai...
usse jyada 6 second ki input mile to use ignore kar de
Sir Kindly muji bata de pehly se progm howa arduino ke progm kasy chack kr sakty hai plz
Thank you very much sir. It's really very helpful.
Hi sir,
I learned a lot from your videos.
I tried making a circuit with multiple leds and the uploading was done successful but the circuit didn't blow.
Accha samjhaya sir thanks .......
sir mene aapki arduino ki sbi vedio dekhi hai or me shikha b isi se hi hu but sir mujhe ak object detected senser ka use krna hai
pelese sir help me
sir kya arduino mein camera connect kar sakte hain???
Thanks...
..
..
Very helpful
excellent and to the point explaination
got benefited...THANK YOU SIR
Mujhe programing karani hai auto copler El 817 ka program Kya hoga
sir ap nay boat acha samjaya hay
Sir can you please suggest me the relay for driving a dc water pump 9 volt with uno
sir aap bhut achaa smjate h plz ek or information mil skti h kya
dear sir can i read any external microcontroller eeprom & flash data by uart of of arduino uno or multiserial port of arduino mega
sir may ek counter banaya hu jo ki button press karne se ek ek karke increase hota hoy.. but button press karke rakhne se o 1 ke bad 1 count karte ja ta hay.. may chata hu ki ek bar button press karne se 1 + he count hoga chahe o kitni he der tak button ko press karke rakhu.. please help me out sir..
pixel led ws2812b led ka arduino programming ka Codding ka video banao.
Sir i need your help
I want to two arduino programming code merge
I want to make black line follower by using analog pins and mobile control car using Bluetooth hc-05.
I have both codes .
Sir, Can output of an audio tone generator be used as Analog or Digital input? Thanks and regards.
SIR AP KO NAMSKAR MAN AP KA FAN HOGAYA HUN KINYU KI AP TEACHING SAY ARDUINO SIKHNAY MEN ASANI SAY SAMJH ARAHA HAY
Sir mera ek doubt hai . mnay kuch 7 segments display programs may dekha tha ki jha unhone LOW likha vo leds ON ho rhi thi ,
Mnay us program ko 123d adruino simulation paar bhi run kiya wha bhi jo LED ko LOW mila tha wahi ON ho rhi thi but jaab mnay implement kiya taab vo LED on ho rhi thi jisme mnay HIGH diya . Aapne bhi ON krne ke liye HIGH diya hai . CAn u give me ur email i want to contact you regarding this . THANK YOU BRILLIANT EXPLANATION SOLVED ALL MY DOUBTS REGARDING PINS AND BREADBOARD . :)