Це відео не доступне.
Перепрошуємо.

Arduino Programming Basics : Part 1 (HINDI): LEDs and Seven Segment

Поділитися
Вставка
  • Опубліковано 22 сер 2016
  • Introduction to Arduino board (Arduino UNO R3), functions of various pins on Arduino
    Introduction to Arduino Programming Language
    Control the Blinking of a LED with Arduino
    The Basics of a Bread-Board
    Interfacing Multiple LEDs with Arduino
    Interfacing 7-segment display with Arduino

КОМЕНТАРІ • 445

  • @arslanahmed5137
    @arslanahmed5137 6 років тому +26

    sir ap hot acha samjhaty hein
    ap jaisa aj tak kisi ny nae samjhaya
    allah ap ko sehat dy

  • @rahulkamboj9375
    @rahulkamboj9375 5 років тому +6

    Salute hia sir aapko because itne time me itni knowledge free me, I have never been before..... Well done and keep going

  • @Evisfuture
    @Evisfuture 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

  • @sameerengineer2682
    @sameerengineer2682 7 років тому

    you are cool sir apne ek he video me sabhi electronic ka knowledge dediya vo bhi ekdam acche tarike se . thank you so much

  • @drdbbajpai
    @drdbbajpai 4 роки тому

    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 /

  • @vikasmehta3420
    @vikasmehta3420 6 років тому

    bahut hi detailed explaination hai sir basics ka everything u have explained clearly

  • @ElectroMentor
    @ElectroMentor 3 роки тому +3

    LOVE IT,I WAS JUST ARDUINO FAN NOW I AM YOUR FAN AS WELL 👍😍

  • @mahabalithangabali9129
    @mahabalithangabali9129 4 роки тому

    Very good style of teaching no need to know digital electronic ,,

  • @princeyog1
    @princeyog1 8 років тому

    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....

  • @Evisfuture
    @Evisfuture 4 роки тому

    Apka video dekh kar khus hua bahut badiya banaya hai apne.

  • @fullmasti9886
    @fullmasti9886 6 років тому

    mja aa gya.... waah waah janab science ke mje hi alag hain

    • @clgproject
      @clgproject 6 років тому

      Learn Arduino In Hindi
      ua-cam.com/video/VA_UegoHMBQ/v-deo.html
      Full Tutorial Series

  • @shahraj1918
    @shahraj1918 5 років тому

    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.

  • @pratik1213
    @pratik1213 6 років тому

    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

  • @ramprajapati1557
    @ramprajapati1557 5 років тому

    sir you are a best teacher in robotics.

  • @manjunathar81
    @manjunathar81 4 роки тому

    Thank sir.. I have been using arduino since 3 years.. I was just copy pasting sketches..
    Now I understood coding..

    • @rakshithar4926
      @rakshithar4926 3 роки тому +1

      Hi where are you from ?? If in Karnataka reply me I want to develop a small machine using UNO

    • @manjunathar81
      @manjunathar81 3 роки тому +1

      @@rakshithar4926 ಹೌದು. ನಾನು ಕನ್ನಡದವನು.. ಚಿಕ್ಕಮಗಳೂರಿನವನು.. ಏನಾದರೂ ಸಹಾಯ ಬೇಕೇ ?

    • @rakshithar4926
      @rakshithar4926 3 роки тому

      @@manjunathar81 ತುಂಬಾ ಖುಷಿ ಆಯ್ತು ಸರ್, ನಾನು ಮತ್ತು ನನ್ನ ಸ್ನೇಹಿತ ಸೇರಿ ಒಂದು ಪ್ರೊಜೆಕ್ಟ್ ತಯಾರಿಸಿದ್ದೇವೆ

    • @rakshithar4926
      @rakshithar4926 3 роки тому

      @@manjunathar81 have some confuse to connect colour recognized sensor to UNO board can you please help me. Please give you number sir

    • @manjunathar81
      @manjunathar81 3 роки тому

      @@rakshithar4926 9008472640

  • @narendrasaini4071
    @narendrasaini4071 4 роки тому +1

    #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

  • @iway3030
    @iway3030 6 років тому

    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.

  • @omkarbansode6305
    @omkarbansode6305 3 роки тому +2

    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...,🤗

  • @mniteen9486
    @mniteen9486 Рік тому

    You are great teacher, please keep it up 👍🏻👍🏻

  • @sahilmehar6358
    @sahilmehar6358 4 роки тому

    It was really helpful...never felt wasting time on it

  • @chetangharte4543
    @chetangharte4543 6 років тому +2

    Ap jaisa koi nahi samjata

  • @SukhdevSingh-tp4mg
    @SukhdevSingh-tp4mg 4 роки тому

    Sir Kamal ja lecture tha (Paisa vasool

  • @saurabhsinghjat
    @saurabhsinghjat 5 років тому +1

    What a video sir mja aa gya, simplicity with perfaction..

  • @rajivparbat5706
    @rajivparbat5706 7 років тому +3

    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.

  • @sudershankhetrapal7232
    @sudershankhetrapal7232 4 роки тому

    Excellent method of teaching

  • @priyansisahoo7475
    @priyansisahoo7475 7 років тому

    it's a superb tutorial about this topic i found ever.many many thanks sir

  • @MT-mz5kt
    @MT-mz5kt 5 років тому +5

    best, detailed and conceptual video👍🏻👍🏻👏👏

  • @adarshmishra001
    @adarshmishra001 4 роки тому

    Sahi main sir
    Aap toh bahut student ki help karenge

  • @thefuturetechnologychannel
    @thefuturetechnologychannel 3 роки тому

    Aapne inta acha se samjhya hai sir thank you so much

  • @lateefriyaz893
    @lateefriyaz893 7 років тому +1

    Such a Very Very Helpful video, Thank you for sharing Sir..

  • @saurabhrathor9408
    @saurabhrathor9408 5 років тому

    Thanks sir aap bahut accha samjhate hai

  • @Vidya1939
    @Vidya1939 4 роки тому

    Very nice explanation ,& nicely explained Tks for video

  • @liverandom5555
    @liverandom5555 7 років тому

    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!!😀😀

  • @manu-tq2zv
    @manu-tq2zv 6 років тому

    Your way to explain is outstanding. I really liked it,
    Regard as a good teacher

  • @dailypost5913
    @dailypost5913 4 роки тому

    Sir your explanation is so nice

  • @Narensarcity
    @Narensarcity 5 років тому

    Great Knoledge sir Teaching method superb

  • @shivajiugale3175
    @shivajiugale3175 4 роки тому

    Thank You Sir.
    Ab mai second part dhekne ja raha hu

  • @ameyapatil9565
    @ameyapatil9565 4 роки тому

    A awesome video it will improve our knowledge

  • @Mdismail-fj3kc
    @Mdismail-fj3kc 8 років тому +2

    awesome :) great, excellent videos series improved my knowledge

  • @mnadeemkhan335
    @mnadeemkhan335 3 роки тому

    Big respect to you Love from pakistan

  • @aman5655
    @aman5655 6 років тому

    Fabulous video my all doubts are clear. Thank you very much sir

  • @ranjanmittal7185
    @ranjanmittal7185 6 років тому +1

    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.

  • @mohmmadismail521
    @mohmmadismail521 6 років тому

    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

  • @thefuturetechnologychannel
    @thefuturetechnologychannel 3 роки тому

    Wahh sir kya baat hai mera lakho pranam jai hind

  • @mohmmadismail521
    @mohmmadismail521 6 років тому +1

    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

  • @punitj3886
    @punitj3886 8 років тому

    Great and excellent videos series improved my knowledge

  • @rahmathusain3220
    @rahmathusain3220 4 роки тому

    SIR AP KO NAMSKAR MAN AP KA FAN HOGAYA HUN KINYU KI AP TEACHING SAY ARDUINO SIKHNAY MEN ASANI SAY SAMJH ARAHA HAY

  • @yogeshtharani6560
    @yogeshtharani6560 7 років тому +1

    Very helpful series!! Thank you sir!

  • @MyRefrigeration
    @MyRefrigeration 3 роки тому +1

    Thanks...
    ..
    ..
    Very helpful

  • @gauravshrivastava773
    @gauravshrivastava773 7 років тому

    very nice, simple and clear clarification

  • @shubhamtech9
    @shubhamtech9 7 років тому

    bhut easy tarike se bataya hai
    bhut accha sir

  • @santoshkumarsharma824
    @santoshkumarsharma824 4 роки тому

    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

  • @VinayKumar-to1kb
    @VinayKumar-to1kb 7 років тому

    Accha samjhaya sir thanks .......

  • @Mechbott
    @Mechbott 4 роки тому

    good vdo
    u can get basic knowledge,

  • @AkshajDigiTech
    @AkshajDigiTech 4 роки тому

    Sir you have explained everything very clearly thankyou

  • @robolearn5639
    @robolearn5639 7 років тому

    nice one! well i do my arduino projects but the concepts had not much clear and your video helped to understand those concept

  • @manishchauhan5168
    @manishchauhan5168 4 роки тому

    You are good teacher

  • @jafarhussain2585
    @jafarhussain2585 4 роки тому

    sir ap nay boat acha samjaya hay

  • @umeryar4411
    @umeryar4411 4 роки тому

    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

  • @username-s5x
    @username-s5x 5 років тому +1

    Is the naming of 7 Segment Display has any relationship with k-Map??? 🤔

  • @suryakantparkhi9795
    @suryakantparkhi9795 7 років тому

    good job sir you explain very well keep continues your job so we learn very well

  • @chiranjitkarmakar838
    @chiranjitkarmakar838 7 років тому

    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

  • @roshangupta2656
    @roshangupta2656 6 років тому +2

    Ap kya gjb samjhate h

  • @sanjayhiwralesblog3019
    @sanjayhiwralesblog3019 4 роки тому

    you teach very nicely

  • @rajivparbat5706
    @rajivparbat5706 7 років тому

    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.

  • @mohdshahbaz6079
    @mohdshahbaz6079 6 років тому +1

    Sir how to make more digital input and output pins in arduino uno

  • @muneendraazad9775
    @muneendraazad9775 6 років тому

    Nice tutorial, five star rating...

  • @ravisalunke4889
    @ravisalunke4889 4 роки тому

    very good video sir, just finished one, thanks a lot for posting

  • @chiranjitkarmakar838
    @chiranjitkarmakar838 7 років тому

    #include
    #include
    #include
    #include
    #define TOTMATRIX 5
    #define FONT_COLS 8
    #define FONT_ROWS 8
    int RECV_PIN = 2;
    int IR_VCC=9;
    int IR_GND=10;
    IRrecv irrecv(RECV_PIN);
    decode_results results;
    volatile boolean setupMode=false,setupInterrupted=false;
    String setupMsg;
    RTC_DS1307 RTC;
    char *days[7]={"SUNDAY","MONDAY","TUESDAY","WEDNESDAY","THURSDAY","FRIDAY","SATURDAY"};
    String datestr;
    String zero;
    DateTime now;
    uint16_t setupYear=2000;
    uint8_t setupMonth=1,setupDay=1,setupHour=1,setupMin=0;
    int mode=-1; //-1 setup info, 0 year,1 month, 2 day, 3 hour, 4 min
    /*
    * IR REMOTE CODES FOR NEC 2FD40BF 2 2FDA05F 5 2FDD827 UP 2FDF807 Down 2FD22DD OK
    */
    //connection pin layout matrix from led side
    /*
    * vcc,gnd,latch1,clock1,data1,lat2,clock2,data2
    * arduino pins are
    * vcc,gnd,3,4,5,6,7,8
    */
    // Define 74HC595 connections.
    int data1=5;//dat
    int clock1 =4;//clock1
    int latch1=3; //latch
    int dataPin2 = 6; //Arduino pin connected to grey Data 14 SER of 74HC595
    int clockPin2 = 8; //Arduino pin connected to white Clock 11 SRCLK of 74HC595
    int latchPin2 = 7; //Arduino pin connected to yellow Latch 12 RCLK of 74HC595
    uint8_t Buffer[8][TOTMATRIX] = {
    {0,0,0,0,0},
    {0,0,0,0,0},
    {0,0,0,0,0},
    {0,0,0,0,0},
    {0,0,0,0,0},
    {0,0,0,0,0},
    {0,0,0,0,0},
    {0,0,0,0,0}
    };
    const uint8_t CharData[][8] PROGMEM ={
    {0x00,0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
    //{0xff,0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff}, // 0x20, Space
    {0x00,0x04, 0x04, 0x04, 0x04, 0x04, 0x00, 0x04}, // 0x21, !
    {0x00,0x09, 0x09, 0x12, 0x00, 0x00, 0x00, 0x00}, // 0x22, "
    {0x00,0x0a, 0x0a, 0x1f, 0x0a, 0x1f, 0x0a, 0x0a}, // 0x23, #
    {0x00,0x04, 0x0f, 0x14, 0x0e, 0x05, 0x1e, 0x04}, // 0x24, $
    {0x00,0x19, 0x19, 0x02, 0x04, 0x08, 0x13, 0x13}, // 0x25, %
    {0x00,0x04, 0x0a, 0x0a, 0x0a, 0x15, 0x12, 0x0d}, // 0x26, &
    {0x00,0x04, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00}, // 0x27, '
    {0x00,0x02, 0x04, 0x08, 0x08, 0x08, 0x04, 0x02}, // 0x28, (
    {0x00,0x08, 0x04, 0x02, 0x02, 0x02, 0x04, 0x08}, // 0x29, )
    {0x00,0x04, 0x15, 0x0e, 0x1f, 0x0e, 0x15, 0x04}, // 0x2a, *
    {0x00,0x00, 0x04, 0x04, 0x1f, 0x04, 0x04, 0x00}, // 0x2b, +
    {0x00,0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x08}, // 0x2c, ,
    {0x00,0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00}, // 0x2d, -
    {0x00,0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x0c}, // 0x2e, .
    {0x00,0x01, 0x01, 0x02, 0x04, 0x08, 0x10, 0x10}, // 0x2f, /
    {0x00,0x0e, 0x11, 0x13, 0x15, 0x19, 0x11, 0x0e}, // 0x30, 0
    {0x00,0x04, 0x0c, 0x04, 0x04, 0x04, 0x04, 0x0e}, // 0x31, 1
    {0x00,0x0e, 0x11, 0x01, 0x02, 0x04, 0x08, 0x1f}, // 0x32, 2
    {0x00,0x0e, 0x11, 0x01, 0x06, 0x01, 0x11, 0x0e}, // 0x33, 3
    {0x00,0x02, 0x06, 0x0a, 0x12, 0x1f, 0x02, 0x02}, // 0x34, 4
    {0x00,0x1f, 0x10, 0x1e, 0x01, 0x01, 0x11, 0x0e}, // 0x35, 5
    {0x00,0x06, 0x08, 0x10, 0x1e, 0x11, 0x11, 0x0e}, // 0x36, 6
    {0x00,0x1f, 0x01, 0x02, 0x04, 0x08, 0x08, 0x08}, // 0x37, 7
    {0x00,0x0e, 0x11, 0x11, 0x0e, 0x11, 0x11, 0x0e}, // 0x38, 8
    {0x00,0x0e, 0x11, 0x11, 0x0f, 0x01, 0x02, 0x0c}, // 0x39, 9
    {0x00,0x00, 0x0c, 0x0c, 0x00, 0x0c, 0x0c, 0x00}, // 0x3a, :
    {0x00,0x00, 0x0c, 0x0c, 0x00, 0x0c, 0x04, 0x08}, // 0x3b, ;
    {0x00,0x02, 0x04, 0x08, 0x10, 0x08, 0x04, 0x02}, // 0x3c, <
    {0x00,0x00, 0x00, 0x1f, 0x00, 0x1f, 0x00, 0x00}, // 0x3d, =
    {0x00,0x08, 0x04, 0x02, 0x01, 0x02, 0x04, 0x08}, // 0x3e, >
    {0x00,0x0e, 0x11, 0x01, 0x02, 0x04, 0x00, 0x04}, // 0x3f, ?
    {0x00,0x0e, 0x11, 0x17, 0x15, 0x17, 0x10, 0x0f}, // 0x40, @
    {0x00,0x04, 0x0a, 0x11, 0x11, 0x1f, 0x11, 0x11}, // 0x41, A
    {0x00,0x1e, 0x11, 0x11, 0x1e, 0x11, 0x11, 0x1e}, // 0x42, B
    {0x00,0x0e, 0x11, 0x10, 0x10, 0x10, 0x11, 0x0e}, // 0x43, C
    {0x00,0x1e, 0x09, 0x09, 0x09, 0x09, 0x09, 0x1e}, // 0x44, D
    {0x00,0x1f, 0x10, 0x10, 0x1c, 0x10, 0x10, 0x1f}, // 0x45, E
    {0x00,0x1f, 0x10, 0x10, 0x1f, 0x10, 0x10, 0x10}, // 0x46, F
    {0x00,0x0e, 0x11, 0x10, 0x10, 0x13, 0x11, 0x0f}, // 0x37, G
    {0x00,0x11, 0

  • @MaheshPawaskar
    @MaheshPawaskar 4 роки тому

    Sir, aap bahut aasan tarikese samazate hai.?
    आप कौनसे शहर में रहने वाले है?

  • @priyankdabhi8652
    @priyankdabhi8652 3 роки тому

    EK VOLTAGE REGULATOR IC (7805) PE HUM MAX 35V DE SAKTE HE TO ARDUINO KE VOLTAGE REGULATOR KI MAX VOLTAGE INPUT KITNE REHTE H

  • @BinodonPoint
    @BinodonPoint 6 років тому +3

    very useful tutorial..
    love from Bangladesh ♥

  • @javedmustafa3498
    @javedmustafa3498 5 років тому

    Very good explanation
    Great job sir.

  • @naeemmnaeem1037
    @naeemmnaeem1037 6 років тому

    Sir main ne ap se bohot kuch sekha than you sir

  • @nawabsayyad96
    @nawabsayyad96 4 роки тому

    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

  • @shadanakhtar1437
    @shadanakhtar1437 5 років тому

    Very Very Helpful Video Sach me Please Upload More Sir

  • @kanikatak2621
    @kanikatak2621 3 роки тому

    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

  • @realshady6922
    @realshady6922 6 років тому

    very nice sir..good job

  • @chetanvaddoriya1099
    @chetanvaddoriya1099 6 років тому

    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

  • @fuzailranu
    @fuzailranu 4 роки тому

    Its been vry useful for me., seriously thanks to sir

  • @jiteshsharma4692
    @jiteshsharma4692 4 роки тому

    Excellent job sir

  • @vikasmehta3420
    @vikasmehta3420 6 років тому

    excellent and to the point explaination

  • @vijaypatel1774
    @vijaypatel1774 6 років тому

    in place of red led, yellow led......can we write red ,yellow, green only?

  • @rakshitsirohi3311
    @rakshitsirohi3311 4 роки тому

    sir the 13th pin of arduino uno already have resistor built in then why u have used external resistor

  • @PravinKumar-eh7ds
    @PravinKumar-eh7ds 2 роки тому

    Awesome explanation sir

  • @kiranPatel-si6cp
    @kiranPatel-si6cp 4 роки тому

    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?

  • @mukeshagg4249
    @mukeshagg4249 6 років тому

    nice teaching method.

  • @sehajbrar9815
    @sehajbrar9815 2 роки тому

    very talented man u r

  • @guryarathi2749
    @guryarathi2749 4 роки тому

    Very good lecture

  • @seukram5742
    @seukram5742 7 років тому

    sir USB Bluetooth(computer ka) ko arduino k sath kaise connect kar sakte hai???

  • @riteshpatel9697
    @riteshpatel9697 3 роки тому

    Great explanation sir

  • @souravbera847
    @souravbera847 6 років тому +1

    Nice explain ........ thank you sir

  • @sunilsolnaki1719
    @sunilsolnaki1719 6 років тому

    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

  • @Anhad1313
    @Anhad1313 Рік тому

    Sir your professional ok 👍

  • @tarunsoni6559
    @tarunsoni6559 6 років тому

    dear sir can i read any external microcontroller inbuilt eeprom & flash data by uart of of arduino uno or multiserial port of arduino mega

  • @d.sh.technical5306
    @d.sh.technical5306 4 роки тому

    sir aap bhut achaa smjate h plz ek or information mil skti h kya

  • @Mobiletechnologyfmz
    @Mobiletechnologyfmz 6 років тому

    very nice sir .......very gud and complete information

  • @bharatibhogunkar157
    @bharatibhogunkar157 6 років тому

    Awesome explanation sir 👏👏👏👏very helpful for beginners ty so much Sir for sharing this video
    Plz do such type of videos

  • @deepanshubhasker1721
    @deepanshubhasker1721 6 років тому

    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 . :)

  • @wajidali-pg5js
    @wajidali-pg5js 3 роки тому

    Sir Kindly muji bata de pehly se progm howa arduino ke progm kasy chack kr sakty hai plz