Thank you for that point on the pull down resistor. Could never have figured that one out myself, tbh.
@AssadullahSsanu Жыл бұрын
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
@sherzod_omonov1978 Жыл бұрын
Thank you for your all lessons.
@hphai1122 Жыл бұрын
please tell me the best place to learn tinkercad with live classes
@KREMENAK019 ай бұрын
Thank you. But how to press 2 buttons in same time?
@SatyamGupta-nm3vjАй бұрын
Nicely explained 🎉
@qzorn44403 жыл бұрын
what a great educational voice and lecture.. i could listen for hours... thanks a lot...:)
@ronakagarwal55944 жыл бұрын
Why did you connect resistor with the pushbutton
@Rebel-from-Hell Жыл бұрын
can you add debounce on code blocks to keep the LED after releasing the button?
@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
@dhruv35603 жыл бұрын
mam plz make some more videos .yr work is really grt
@stefano.a5 ай бұрын
Do you know how I can press and mantain pressed, *two* buttons in the simulator of TinkerCAD?
@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
Жыл бұрын
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
@ArduBlock2 жыл бұрын
Thanks for the great video on this.
@baotrangia3417 Жыл бұрын
Could you guide me on how to develop a code countdown 4 digit 7 seg, please!
@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
@rohanteach4454 Жыл бұрын
i really engoyed your play list
@darrenstettner53814 жыл бұрын
Thanks for the lessons. I learned a lot.
@firewater3652 жыл бұрын
How can I use the button to dim up and then turn off the LED? off, 50% brightness, 100% brightness, then off.
@MaadhavVashishth10 ай бұрын
// 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 }
@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.
@harshabayyaram4 жыл бұрын
great teaching madam
@Harvs008 Жыл бұрын
thx g rlly helpful
@charmedharrid82023 жыл бұрын
can u use it with 11 buttons?
@amandosanchez13 жыл бұрын
i cannot click add on tinkercard
@GlobalHealthSI2 жыл бұрын
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 }
@carsonbell13682 жыл бұрын
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
@kdp90784 жыл бұрын
Thank you you just solved my issue
@junhokim53226 жыл бұрын
Thank you for always. Please I want to learn "blocks" of dbounce.
@Jacobdalolman4 жыл бұрын
Help. The button can't reach across the dividing line to the pins on the other side.
@lightsoundtips14154 жыл бұрын
Mam I have a request . Arduino UNO ir remote control relalyboard with inbuilt eeprom and parallel operating pushbutton control
@patrickczader39953 жыл бұрын
do you need to add the variable? will it work if you just put read digital pin instead of buttonstate?
@patrickczader39953 жыл бұрын
I tried it and yes it did work so anyone whos wondering yes you dont have to put a variable
@eeemuse Жыл бұрын
thanks a lot
@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
@ainulzuhaira79713 жыл бұрын
I can't on of the lamp. TQ
@MaadhavVashishth10 ай бұрын
My Code is Not Working, Please check if There is Some Error.
@mking45103 жыл бұрын
WTF!! im searching for binding push button to keyboard and i got this woman who use blocks instead of coding to do arduino!!
@sushruthsharma9767 Жыл бұрын
i just did the exact same thing, still did not work
@mynorflores33342 жыл бұрын
Thanks for your help, one question what is the software that you use to record your screen and face _thanks
@KeineStrande Жыл бұрын
Ratio
@ConnorMount-vk6ui7 ай бұрын
Im getting an error because "button" was never declared
@ConnorMount-vk6ui7 ай бұрын
Even though there was an error, probably from me, it gave me a good base to complete my project
@kesharkesongs44705 жыл бұрын
software link plzzzzzz
@RG-zi5xv6 жыл бұрын
três biên, very Goody! Muito bem! Gut.
@junhokim53226 жыл бұрын
Thanks
@pyro__pirate84994 жыл бұрын
Can I do this with 4 led’s?
@HAAAAAAAAHHHHHH4 жыл бұрын
Yes why not?
@hurried_coder4043 жыл бұрын
i dont get please make a tutorial where you build from scrarch
@shot33404 жыл бұрын
i am apart of anonymous i approve.
@oldcet52773 жыл бұрын
lol
@bob-ny6kn2 жыл бұрын
Clicked for Becks.
@ramdesignlabs95955 жыл бұрын
hey how do you use tincard
@charmedharrid82023 жыл бұрын
if your still around and want to know reply
@TheRealSaddy Жыл бұрын
he said he was lying in the last comment
@bigtome80933 жыл бұрын
poggly woggle
@TheRealSaddy Жыл бұрын
so sorry fro my friend
@easimple-3d5324 жыл бұрын
👌❤
@hurried_coder4043 жыл бұрын
it didnt work
@hurried_coder4043 жыл бұрын
never mind got it working but you should try buildin everything from scratch in your next video
@nanobot3656 жыл бұрын
🤖👍
@robedmagician27585 жыл бұрын
YOU SEXY BEAST!!!!!!!!!!!!!!
@rohanteach4454 Жыл бұрын
mc bc
@braydenbentley20475 жыл бұрын
potato
@carolinejerke58614 жыл бұрын
Sorry, That's definitely not the easiest way to build this simple circuit.
@goo.goo.ga.ga.123. Жыл бұрын
l l l l l
@TheRealSaddy Жыл бұрын
this video is bad i ont understad!
@andtheywereroommates19893 жыл бұрын
Why do I have to learn this shit in school?
@bangstar7195 ай бұрын
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)
@TheRealSaddy Жыл бұрын
hes 5 so he doesnt rlly know how to type.
@FutbolistaTA3 жыл бұрын
It sucks
@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?