Thank you so much for the tutorial. I was programming the button wrong all along
@RajeshKalaShinas Жыл бұрын
THANK YOU VERY MUCH FOR THE EXCELLENT EXPLANATION OF CONNECTING PUSH BUTTTON
@redefined46575 ай бұрын
Thank you for that point on the pull down resistor. Could never have figured that one out myself, tbh.
@ronakagarwal55944 жыл бұрын
Why did you connect resistor with the pushbutton
@sherzod_omonov1978 Жыл бұрын
Thank you for your all lessons.
@hphai1122 Жыл бұрын
please tell me the best place to learn tinkercad with live classes
@Rebel-from-Hell Жыл бұрын
can you add debounce on code blocks to keep the LED after releasing the button?
@KREMENAK0110 ай бұрын
Thank you. But how to press 2 buttons in same time?
@stefano.a7 ай бұрын
Do you know how I can press and mantain pressed, *two* buttons in the simulator of TinkerCAD?
@amandosanchez13 жыл бұрын
i cannot click add on tinkercard
@baotrangia3417 Жыл бұрын
Could you guide me on how to develop a code countdown 4 digit 7 seg, please!
Жыл бұрын
How to disable a button when another is active and I want to press button x and would glow led1 after that I will press stop button then led1 go off after that I will press button y and would glow led2 however I don't want to glow led1 or led2 while one of each is glowing. Pressing stop button must be mandatory
@qzorn44403 жыл бұрын
what a great educational voice and lecture.. i could listen for hours... thanks a lot...:)
@MaadhavVashishth Жыл бұрын
// C++ code // int Button_State = 0; void setup() { pinMode(2, INPUT); pinMode(LED_BUILTIN, OUTPUT); } void loop() { Button State = digitalRead(2); if (Button State == HIGH) { digitalWrite(LED_BUILTIN, HIGH); } else { digitalWrite(LED_BUILTIN, LOW); } delay(10); // Delay a little bit to improve simulation performance }
@charmedharrid82023 жыл бұрын
can u use it with 11 buttons?
@GlobalHealthSI3 жыл бұрын
I press but nothing happens. My code shows LED_BUILTIN and not 13 for the output. Not sure why it is not working. Any suggestions from anyone would be greatly appreciated. Thanks. // C++ code // int buttonState = 0; void setup() { pinMode(2, INPUT); pinMode(LED_BUILTIN, OUTPUT); } void loop() { // read the state of the pushbutton buttonState = digitalRead(2); // check if pushbutton is pressed. If it is, button // state is HIGH if (buttonState == HIGH) { digitalWrite(LED_BUILTIN, HIGH); } else { digitalWrite(LED_BUILTIN, LOW); } delay(10); // Delay a little bit to improve simulation performance }
@SatyamGupta-nm3vj3 ай бұрын
Nicely explained 🎉
@ArduBlock2 жыл бұрын
Thanks for the great video on this.
@mohammadqusayhairie6104 Жыл бұрын
makseh kak tpi ada sikit yang aptut kitak perbaiki tek sebab mek ambi masa juak cri error tek tapi dh jumpa apa apa pun makseh mena mena kak mek apprieciate gilak gilak
@sahil___63124 жыл бұрын
Madam with this code I had associated simple built_in led blink code and change button led to pin 4 Problem is when I pressed the button, the 4th pin led glow but the built in led goes off My objective is that when I pressed the button the button led will glow else LOW, Simultaneously the built in led perform their standard blink code
@rotorhead264 жыл бұрын
I really enjoyed your video. What would the code look like if I wanted to press and release a button and the LED blinks 5 times and then shuts off without repressing the button?
@rohanteach4454 Жыл бұрын
yes me tooo
@firewater3652 жыл бұрын
How can I use the button to dim up and then turn off the LED? off, 50% brightness, 100% brightness, then off.
@Jacobdalolman4 жыл бұрын
Help. The button can't reach across the dividing line to the pins on the other side.
@carsonbell13683 жыл бұрын
I have a project I'm doing and don't know how to do it. I have done a lot of research, but to no avail. I need a switch to turn on the LEDs, then I need a button to have 3 LEDs lit and stay lit, then with that same button, once pushed have it turn off the lit ones and light up a set of 3 other (different) LEDs and say lit until the button is pushed again and the process repeats for an additional set of 3 and then continues in that loop until I decide to turn off the power switch. if I turn the power switch back on the same ones need to be lit that were lit when I switched the power off. Is this possible? Do I need to hire someone? Is there any code available or schematic diagram. Thanks in advance. -Carson
@gman46783 жыл бұрын
Instead of the led, can I use a servo to move when I push the button.
@charmedharrid82023 жыл бұрын
that should work if you get the code right
@charmedharrid82023 жыл бұрын
i can also give you a link to a turtorial kzbin.info/www/bejne/nIHVgYWQoayXrKM
@darrenstettner53814 жыл бұрын
Thanks for the lessons. I learned a lot.
@dhruv35603 жыл бұрын
mam plz make some more videos .yr work is really grt
@patrickczader39954 жыл бұрын
do you need to add the variable? will it work if you just put read digital pin instead of buttonstate?
@patrickczader39954 жыл бұрын
I tried it and yes it did work so anyone whos wondering yes you dont have to put a variable
@ainulzuhaira79713 жыл бұрын
I can't on of the lamp. TQ
@mynorflores33343 жыл бұрын
Thanks for your help, one question what is the software that you use to record your screen and face _thanks
@rohanteach4454 Жыл бұрын
i really engoyed your play list
@seeking91453 жыл бұрын
My Button is always "on" and I really don't get why ... - 5V to Button - diagonal pin of the button go to input pin of arduino - other pin of this side of the button goes to ground with an 10k resistor Code: const int signal = 11; void setup() { Serial.begin(9600); pinMode(signal, INPUT); } void loop(){ if (digitalRead(signal)==HIGH){ Serial.print("Ok"); } } But it always prints "OkOkOkOk ..." without pushing the button
@junhokim53226 жыл бұрын
Thank you for always. Please I want to learn "blocks" of dbounce.
@Harvs008 Жыл бұрын
thx g rlly helpful
@kesharkesongs44705 жыл бұрын
software link plzzzzzz
@kdp90785 жыл бұрын
Thank you you just solved my issue
@KeineStrande Жыл бұрын
Ratio
@MaadhavVashishth Жыл бұрын
My Code is Not Working, Please check if There is Some Error.
@sushruthsharma9767 Жыл бұрын
i just did the exact same thing, still did not work
@harshabayyaram4 жыл бұрын
great teaching madam
@lightsoundtips14154 жыл бұрын
Mam I have a request . Arduino UNO ir remote control relalyboard with inbuilt eeprom and parallel operating pushbutton control
@pyro__pirate84994 жыл бұрын
Can I do this with 4 led’s?
@HAAAAAAAAHHHHHH4 жыл бұрын
Yes why not?
@princessabon43793 жыл бұрын
Request on you next vlog ma'am Make a system that runs 5 LED and three sensors in one Arduino make a video of your output and attached it here.
@hurried_coder4043 жыл бұрын
i dont get please make a tutorial where you build from scrarch
@ramdesignlabs95955 жыл бұрын
hey how do you use tincard
@charmedharrid82023 жыл бұрын
if your still around and want to know reply
@ConnorMount-vk6ui8 ай бұрын
Im getting an error because "button" was never declared
@ConnorMount-vk6ui8 ай бұрын
Even though there was an error, probably from me, it gave me a good base to complete my project
@eeemuse Жыл бұрын
thanks a lot
@mking45103 жыл бұрын
WTF!! im searching for binding push button to keyboard and i got this woman who use blocks instead of coding to do arduino!!
@RG-zi5xv6 жыл бұрын
três biên, very Goody! Muito bem! Gut.
@bob-ny6kn2 жыл бұрын
Clicked for Becks.
@junhokim53226 жыл бұрын
Thanks
@TheRealSaddy Жыл бұрын
he said he was lying in the last comment
@shot33404 жыл бұрын
i am apart of anonymous i approve.
@oldcet52773 жыл бұрын
lol
@hurried_coder4043 жыл бұрын
it didnt work
@hurried_coder4043 жыл бұрын
never mind got it working but you should try buildin everything from scratch in your next video
@TheRealSaddy Жыл бұрын
so sorry fro my friend
@bigtome80933 жыл бұрын
poggly woggle
@easimple-3d5324 жыл бұрын
👌❤
@robedmagician27585 жыл бұрын
YOU SEXY BEAST!!!!!!!!!!!!!!
@rohanteach4454 Жыл бұрын
mc bc
@nanobot3656 жыл бұрын
🤖👍
@dude_i_dont_like_my_handleАй бұрын
🙂👍
@braydenbentley20475 жыл бұрын
potato
@andtheywereroommates19893 жыл бұрын
Why do I have to learn this shit in school?
@bangstar7197 ай бұрын
this is how every electric device is made. If civilization ended and only you and another partner would survive, you should have some base knowledge how to start new civilization from scratch! (jk. it will help you find a enigneering job)
@goo.goo.ga.ga.123. Жыл бұрын
l l l l l
@carolinejerke58614 жыл бұрын
Sorry, That's definitely not the easiest way to build this simple circuit.
@TheRealSaddy Жыл бұрын
this video is bad i ont understad!
@FutbolistaTA3 жыл бұрын
It sucks
@TheRealSaddy Жыл бұрын
hes 5 so he doesnt rlly know how to type.
@robedmagician27585 жыл бұрын
take off youre overalls
@giridharmaheshkar82444 жыл бұрын
Waste of time
@foteinikark14654 жыл бұрын
Hi thanks for the video! I am new in electronics, so I would really appreciate an answer to this question: why does the LED not turn on if I place the resistor on the righthand side of connection to pin 13 (every connection still technically remains the same). Hope that makes sense! Thanks in advance!
@manmathsinha89063 жыл бұрын
Since this resistor is only being used to limit current through the circuit, it can actually be located on either side of the LED. Placing the resistor on the positive (anode) side of the resistor will have no differing effects from placing the resistor on the negative (cathode) side of the LED.
@mariakwnstantinidou9108 Жыл бұрын
@@manmathsinha8906 but since the current travels from positive to negative, shouldn't we connect the resistor to the anode? If I understand correctly, if I connect the resistor to the cathode of the LED the current will have already traveled causing the LED to burn. Can you help me understand if I'm wrong?