Push Button and LED with Arduino(code explained) | Control LED with push button | Arduino Tutorial 3

Поділитися
Вставка
  • Опубліковано 28 лис 2024

КОМЕНТАРІ • 32

  • @sewingmachinesindetail
    @sewingmachinesindetail Рік тому +1

    Thank you for this tutorial. I like to ask you about the types of the parameters used. When You use PinMode(6,INPUT). Could it have been PinMode(s,INPUT) ? Cound s have been declared as a constant instead of an integer? Do digitalRead(s) require, that you use an integer as parameter?

    • @techathome
      @techathome  Рік тому +2

      Welcome!
      Not necessarily int. You can also use byte as datatype. Since the value(6) is small and accommodate within 255(max size of byte).
      But Const is a keyword. You can use this for pin declarations since the pin number is fixed.
      Ex:
      const int s= 6;
      or
      const byte s= 6;

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

      @@techathome Thank you. 🙂

  • @farwakhan878
    @farwakhan878 Рік тому +3

    Sir what if the push button have four terminals then how will i connect that. In your video it had only two terminals but the push button i got having four terminals

    • @techathome
      @techathome  Рік тому +3

      There is no difference in the functionality. 4 pin buttons are used to control two devices together, but you can still use the same in this case.
      Keeping the button pressed, check which two pins are getting connected used continuity tester(on multimeter)

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

      ​@@techathome thanku sir😊

  • @Lifeandlittleones
    @Lifeandlittleones Рік тому +1

    The link you have provided for code and circuits is not open for any video.pleaee help

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

      That is compressed file.
      Install winRaR software on your computer and extract using it.

  • @tinmihalic6618
    @tinmihalic6618 Рік тому +1

    How to make simulink model to make it work instead of coding

  • @electronicsideas1361
    @electronicsideas1361 10 місяців тому +1

    If button is pressed 3 times with then..LED ON HOW TO DO HELP ME

    • @techathome
      @techathome  10 місяців тому

      You have to keep a counter and monitor the value until 3 count.
      Can you send request on mail: deepakhd20@gmail.com

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

    Starting and ending circuit are different

  • @adilabusafa
    @adilabusafa Рік тому +1

    أهلاً وسهلاً ومرحباً بك-شكراً لك-يتعذر التعليق-لا أعلم .

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

    Can we use 1k resistor?

  • @kemaketseforkssebitiela3089

    I thought he was suppose to use analogRead instead of digitalRead since he is using an input device.

    • @techathome
      @techathome  Рік тому +1

      analogRead and digitalRead are two different functions to be used depending on the type of input device.
      Here I am using push button which is digital, so digitalRead.
      In case of analog inputs like potentiometer, sensors you have to use analogRead.

  • @sarimabdullah3606
    @sarimabdullah3606 2 роки тому +1

    it is not working

  • @sojunkchandra
    @sojunkchandra 11 місяців тому

    Wonderful❤

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

    Greatly explained

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

    best tutorials love it .

  • @rohanshiragaonkar917
    @rohanshiragaonkar917 4 місяці тому

    Thank u sir

  • @wiambekkal7663
    @wiambekkal7663 10 місяців тому

    it doesn't work!!!!!!!!

    • @techathome
      @techathome  10 місяців тому

      Check the connection.

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

    super

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

    Circuite diagram are not open

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

      Download complete rar file and extract