Questions tagged [button]
A button is a simple input component which responds to being pushed by a user.
343 questions
1
vote
1
answer
850
views
Stepper motor won't change directions!
I am driving a bipolar stepper motor with an a4988 driver using the AccelStepper library. My goal is to press a button and the motor moves CW, then another button for CCW.
I have looked at another ...
1
vote
1
answer
64
views
Unable to make a really basic sketch work
I've been learning how to encapsulate my code within functions, and one of the examples I worked on is a simple INPUT_PULLUP button. When I upload the sketch from the arduino website everything works, ...
1
vote
1
answer
597
views
How to wire and control a 16mm button with 2 legs using arduino?
I can't find any tutorials online explaining how to wire and control a 16mm push button like the one in the picture:
Do you have any suggestions as to how use it with an arduino or a raspberry pi?
1
vote
0
answers
92
views
How to make my sensor reads when i pressed the button
Hi I'm making a digital fare meter, I have a problem in how my sensor reads when I'd pressed the button(single tap). I need the sensor to read once I pressed the button because when I press the button ...
1
vote
0
answers
812
views
Using AccelStepper to move a set distance while a button is held down
I'm working on a project and using a nema 23 stepper motor and driver.
Need to be able to move the stepper 1/32 rotation when I press a button.
I need a small delay so I have time to release the ...
-2
votes
1
answer
406
views
Push button restarts the arduino [closed]
I have linked an external push red colored button to my arduino but when I press it, instead of giving me HIGH or LOW, it resets the arduino. I am a beginner to this stuff so could someone help?
1
vote
1
answer
314
views
Timing push button code
I am trying to time how long button is held for. The code seems to work but with two problems:
the millis values are being read wrongly. If you hold the button for 1 second, it returns holdTime of ...
1
vote
2
answers
2k
views
button connection without connection to 5V pin
There are two types of tutorials for buttons:
I don't understand how a button on the first image works. Do we just hope that there is some non zero voltage and hope its enough? I think the first image ...
2
votes
2
answers
134
views
Rasberry Pi Controlling Arduino - Reads "Ghost" Input - Doesn't Complete Logic Loop
I am using an Arduino Atmega2560 clone, I have used it many times before with satisfactory results - although I haven't used it with my Rpi before.
My Raspberry Pi is model 4 (B I think?).
#define ...
1
vote
1
answer
88
views
Question about button circuit
I'm quite a beginner at electronics, but thought I would try venture into it.
Currently I'm working on a project where I need to reuse a button module salvaged from some old hardware, but I can't ...
2
votes
1
answer
153
views
Adding a common activation pin to a group of buttons
I'm working on an Uno, which has only two interrupt capable pins, but i need at least three buttons to wake it up from its power saving mode.
Is there a way to wire buttons such that, in addition to ...
2
votes
2
answers
220
views
Can anyone help be get readings off of my potentiometer with a push of a button?
Hi I'm trying to get my Arduino Uno code to work with a in a specific way where if I push a button, the Arduino will read the raw potentiometer value once and if I don't push it nothing happens.
https:...
-1
votes
1
answer
276
views
Arduino waits until button release to activate
I'm fairly new to arduino, and on my own I'm trying to move a servo to the left and right using 2 buttons. I've got it working for the most part, however when I hold the button down nothing happens, ...
2
votes
1
answer
84
views
Input state is stuck HIGH when function called using input also uses same input to call another function
I'm writing a choose-your-own-adventure style project for a class project. My Arduino Uno is set up with a 16-digit LCD display and two pushbuttons with pulldown resistors. I'm wanting each function ...
0
votes
2
answers
1k
views
How can I add a potentiometer and more buttons to my custom game controller?
I'm new to using Arduino, and know next to nothing about programming. I'm currently trying to add a potentiometer, and possibly a few more button inputs to my 3D-printed guitar controller project
It ...
1
vote
1
answer
889
views
DFplayer, Play sound when pin is high
I have a code here, from DFmini player. I have a tactile switch. when I press it on and release it will play a sound. My question is that when I press the tactile but not release it so I want it still ...
0
votes
1
answer
87
views
How might I add a delay, close the servo and go to the start again?
#include <Servo.h>
Servo myServo;
const int piezo = A0;
const int button = 2;
const int yellow = 3;
const int green = 4;
const int red = 5;
int knockVal;
int buttonVal;
const ...
1
vote
2
answers
774
views
I need help creating a code that moves a DC motor CW or CCW based off of 2 different buttons
I know I can make the motor move backwards and forwards with buttons but I don't want it to move at full speed. I want it to increment in very small amounts to where it can be adjusted very small ...
2
votes
1
answer
184
views
Button to stop a stopwatch not working correctly!
I'm trying to implement a stopwatch with an LCD display, and I'm supposed to be using the attachInterrupt command to catch the button press. The clock runs perfectly, but the button input isn't caught ...
2
votes
1
answer
144
views
status whether the switch is connected to arduino or not?
I made a small circuit in which a push-button is connected to Arduino via a pulldown resistor. So, whenever it is pressed it connects to 5V otherwise pulled down to the ground. this is working fine ...
1
vote
1
answer
128
views
Saving a value with a click
I have a rotary encoder and 2 buttons to a. Store the encoder value b. Reset the encoder value to 0. The reset buttons work fine the issue is with the set/store button. Where the value changes without ...
2
votes
2
answers
1k
views
How do I make LEDs lights up one by one according to how long the button was pressed and hold
In my project, I am trying to create a timer display with LEDs base on how long a button was pressed and hold.
There are 8 LED lights in total, when the toggle button was pressed, 1st LED lights up; ...
1
vote
1
answer
2k
views
Continuous push button detection in for Stepper control
Currently, I've worked on code for controlling stepper motor with pushbuttons. So, basically, I have to press two push button to run forward and backwards.
but the problem is when I press the 1st ...
0
votes
2
answers
2k
views
How do I make my LCD screen scroll text while allowing for button input?
Here's what I want my code to do: This is part of a tea infusing project that would automate the steeping of tea, part of this is initially having a selection of either Black/Herbal tea or White/Green ...
1
vote
3
answers
2k
views
using a switch case with a 5-position switch and serial output
I'm trying to get started on developing a menu system for my LCD1602. I have a Parallax 5-position switch (up,down,left,right,center) and I would like to interface the two.
I've been trying to get ...
2
votes
1
answer
126
views
Problems with detecting button digital state
I am trying to start an event after pressing and holding the FLASH built-in Nodemcu button for a specific time, I wrote two functions, one for debouncing and detecting the state, the other is to ...
0
votes
0
answers
297
views
problem controlling rgb led with one button
I'm trying to make a lamp which quality to change color by pressing a
button, pressing once turns on red, pressing again turns on blue and so on, but I also want it to have a light effect in which it ...
1
vote
0
answers
79
views
Button example: resistor vs wire
I am playing with this basic example:
Arduino: Button
There're a lot of existing questions about why to connect button to the ground. I get the idea more or less. Is done to avoid "noise" during ...
0
votes
1
answer
1k
views
Trying to move servo motor via 3 buttons
I am having some difficulties in trying to make my servo motor move to a specific angle based on the button pressed.
For example, having the motor start at 0 degrees and then having it move to 180 ...
1
vote
0
answers
552
views
Start / Stop Motor Run with Button State Change
I'm trying to understand Arduino with push buttons. But I can't get the test project I'm working on to work as how I want it to do.
Basically what I'm trying to do with the codes below is to make ...
0
votes
1
answer
122
views
I'm trying to control a servo with a push of a button but its not working HELP
I'm new to Arduino and I'm following this tutorial: https://www.youtube.com/watch?v=T2HMJiy9b_I but the problem is the servo just keeps moving back and forwards on it own and the button is doing ...
0
votes
1
answer
56
views
Correct position for buttonState in my FSM
I wrote a FSM with the help of some tutorials through out the world wide web and so far it does what I want to do with it.
But one thing that is not the way I want to be, is to exit the state ...
0
votes
2
answers
494
views
Restart sequence of NeoPixel stick with a push button at any time
I am really happy with my new Arduino stuff and playing around with all those pixels :).
I am new to programming and it's difficult to understand it, but with every success, I grow in knowledge.
My ...
0
votes
1
answer
1k
views
read state from button to check if clicked
I"m kinda new here and new to the arduino framework.
I want to build a "menu" using LCD 20*4, so I want to detect "button clicked" event.
I've connected button to pin 8 and to ground, like this(...
3
votes
2
answers
199
views
How to make an arduino button to forget his past purpose?
For my school project im making an arduino speedometer for a bicycle. I will be using a reed switch sensor to get the speed. There will also be an clock and a termometer, it will be on a 16x2 lcd ...
0
votes
0
answers
1k
views
Break a while loop with a push button (AccelStepper.h)
Disclaimer: This is my first Arduino project.
Background: I am building a "rapunzel tower" lantern for my daughter: the witch pays a visit to Rapunzel meanwhile my daughter can read a book (or still ...
-1
votes
1
answer
4k
views
Having issue with a redeclaration as a different kind of symbol
Been struggling with this for a few days and I suspect that i have several issues but I cannot find them.
Project: Need a serial count that counts by 5-50 and a button interrupt should trigger a ...
-1
votes
1
answer
85
views
How can I make my Arduino Esplora program start on the press of a button and then continue to run without me having to hold the button down? [closed]
I am trying to create a program where the main code starts on the press of a button.
I am using an Arduino Esplora, and I want to have the built-in LED be blue when I plug in the power until I press ...
0
votes
2
answers
151
views
Displaying when Button has been pressed for LED and returning 1
I've just started using Arduino and I'm having trouble getting my code right.
Here is the task I need to do.
"Create a button read function
Hint: the function header should be int checkbutton ( ...
1
vote
2
answers
390
views
Substitute multiple potentiometers for push buttons and single potentiometers
this is my first post here.
For some time I have been struggling with a problem and would like to know if anyone has a solution to share.
I am building a 4 tone sequencer, where I use 4 ...
-3
votes
4
answers
351
views
How should I connect 5 buttons to arduino so that I can use the least number of inputs all the buttons are connected to ground
The problem here is that I want to connect 5 input buttons to an Arduino but I do not want to utilize 5 input pins of Arduino, is there any matrix like connection using which I can reduce the number ...
1
vote
0
answers
110
views
What is the best way to replace the buttons inside a car remote chip so that it can be controlled via Arduino?
I have a car remote that looks like the following
I would like to replace the buttons with some sort of switch or relay that can be programmatically controlled via an arduino unit. Would a simple ...
0
votes
2
answers
180
views
NeoMatrix Button Troubles
I am creating a 20x15 LED Matrix using and Arduino Nano. My goal is to switch between different "scenes," if you will, using 4 buttons (I just need to run different code to make it display something ...
1
vote
2
answers
2k
views
Press On Hold Off Power Switch
Hi everyone I am hoping someone here can help me.
I am trying to make an arduino turn my project on and off.Using a relay.
I am looking for it to act like a computer power button.
A short press to ...
0
votes
1
answer
2k
views
How to detect button presses with a 74HC595 shift register?
Is there a way I can have my arduino uno differentiate between pushbuttons that are wired through a shift register and detect when each are pressed or not? I found this tutorial for the 74HC165 but I'...
1
vote
1
answer
63
views
How to (optimally) fetch a button press? [duplicate]
For my hardware, I need to check if the button was pressed, but I need to do things only once every half a second.
if (digitalRead(pin) == HIGH)
{
doStuff();
delay(500);
}
The above does ...
-1
votes
1
answer
301
views
light leds from an array
I have the project to build a robot for my school. It will record button pushes then move according to this record.
Before usig motors, i'm trying to do this using leds.
Thanks from posts from this ...
0
votes
1
answer
58
views
Servomotor AND Button
I am having trouble trying to make servomotor and button work together. The button code here below works fine when alone in a separate code but when it is transferred to the code with the servomotor ...
1
vote
2
answers
1k
views
Only print when the button is pressed and not being pressed anymore
I have an Arduino and a microswitch that I want to use to know when the switch is initially being pressed (get "OnsetTime" on Serial) and when the switch is not being pressed anymore (get "OffsetTime" ...
0
votes
2
answers
112
views
Button circuit draws all power away from LEDs
I'm very new to Arduino, so please forgive me if I don't know the proper terms for things.
Whenever I press the button on the board, the LEDs all shut off.
I can't host the image files on imgur, and ...