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

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

КОМЕНТАРІ • 32

  • @sewingmachinesindetail
    @sewingmachinesindetail 11 місяців тому +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  11 місяців тому +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 11 місяців тому

      @@techathome Thank you. 🙂

  • @farwakhan878
    @farwakhan878 11 місяців тому +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  11 місяців тому +2

      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 11 місяців тому

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

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

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

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

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

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

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

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

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

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

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

    • @techathome
      @techathome  11 місяців тому +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.

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

    Starting and ending circuit are different

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

    Greatly explained

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

    Can we use 1k resistor?

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

    Wonderful❤

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

    best tutorials love it .

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

    it is not working

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

    Thank u sir

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

    Circuite diagram are not open

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

      Download complete rar file and extract

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

    super

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

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

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

      Check the connection.