Questions tagged [button]
A button is a simple input component which responds to being pushed by a user.
343 questions
-1
votes
1
answer
64
views
Why is this simple sketch not working? I want step thru 3 variables on alternate button presses. Keeps getting stuck of 1st one. Here is the code
I know that I am missing something basic but cannot find the problem. The button works correctly. The board is Nano connect. Monitor readout is stuck on first line although obviously the whole thing ...
-1
votes
1
answer
88
views
Arduino Nano Keyboard. Keys keeps pressed
I'm new in coding with Arduino, and I am trying to make a one hand keyboard with joystick as personal project. I tried to make it print some ASCII characters, but I don't know why the button keeps ...
-1
votes
1
answer
48
views
Metal pushbutton voltage drops only to 3.15V when OFF
I'm trying to detect a press of a 5-terminal LED button using the tutorial here: https://newbiely.com/tutorials/esp8266/esp8266-button-long-press-short-press
Works with no issue with standard ...
0
votes
1
answer
109
views
How to read my three-button inputs?
I am creating a three-person reaction time game but I would like to be able to read all three buttons' proximity to the start time - currently only the winner is displayed on the serial read.
Here is ...
0
votes
1
answer
68
views
Software debouncing a button when released
I'm having some trouble with software debouncing on Arduino UNO. There is a condition in my code where an unwanted debounce registers as a button push.
I'm using an interrupt for my button press, ...
2
votes
2
answers
852
views
Arduino Digispark ATtiny85 conditional logic not working
Expected Behavior:
I am attempting to use && or nested if statements to achieve the effect of two switches being required to close prior to an LED light (i.e., flip both switches), the LED ...
1
vote
1
answer
722
views
strip.clear() is not clearing/turning off the NeoPixel strip after resetting the ESP8266
In the code below which is running on a WEMOS D1 (ESP8266), a NeoPixel strip turns on 1 LED in red which moves left to right and then right to left whilst the board attempts to connect to Wi-Fi in the ...
0
votes
1
answer
83
views
Sketch halts if button is pressed on boot
I have a KY-040 rotary encoder with a push button wired to an ESP8266. My objective is to be able to detect if the button is pressed or not on boot.
In the below code, if I hold the button down and ...
0
votes
1
answer
1k
views
Turn on by long press of a button?
In my project on Arduino, I want to implement turning on the whole circuit by long press of a button.
But at the same time, I want the Arduino to be turned off in standby or sleep mode, but I don't ...
-1
votes
2
answers
789
views
Arduino Pro Micro not recognizing INPUT or INPUT_PULLUP
I tried to make a controller box with multiple buttons. Sadly, when I tried to connect the buttons, the Arduino Pro Micro didn't recognize them being pressed. I even tried to connect a wire directly (...
2
votes
1
answer
92
views
Code not Executing Reliably on Push Button Activation
I have put together the following code to activate a motor using an Arduino Uno via push buttons.
Two push buttons should be pressed simultaneously to activate the motor for a specified number of ...
2
votes
2
answers
1k
views
Push button issues
I have been using https://wokwi.com/ to learn Arduino and I am having a problem that seems to be happening no matter what I do. I am trying to set up a push button and an LED. The end goal here is to ...
0
votes
1
answer
471
views
LED doesn't completely turn off with digitalWrite(led, LOW);
When I was testing out a program I found a strange behavior of ESP8266.
LEDs don't turn off completely in the first digitalWrite(led, LOW), just the brightness of the LED goes down, but it does turn ...
2
votes
1
answer
522
views
ESP8266 seems to be killing a while loop
When i was testing out a program I found a strange behavior of esp8266
It seems to get out of a while loop even when there's no option of getting out on code
I don't know if these are related but here'...
1
vote
2
answers
1k
views
How do I turn on 3 LEDs in a repetitive sequence where all three LEDs would then turn OFF when the push button used is released?
Basically, how do I modify my code listed below to turn ON each of the three LEDs one at a time in a repetitive sequence while keeping the push-button pressed?
Red (3 sec),
Yellow (1 sec), and
Green (...
2
votes
0
answers
117
views
How to show repeated result on LCD while button is pressing
my results are here.
0 press--"a"
1st press--"b"
2nd press--"c"
3rd press-- still showing "c"
When button pressed 3rd time, It must be repeated to show "a&...
2
votes
2
answers
313
views
Tone() generates a high pitched sound when button is released
I have a simple circuit that makes use of the tone() function to produce some sounds.
I also have a button, hooked with an interrupt function, that whenever is pressed, a variable changes.
Sometimes, ...
3
votes
1
answer
5k
views
Button Matrix / Wiring Schematics
I am just beginning my journey into the Arduino world - plenty of development experience, but basically nothing with electronics outside of building computers.
The question I have involves wiring ...
1
vote
0
answers
93
views
Unable to use RF M4 Receiver with servo motor
I am trying to control a servo motor with the following code:
#include <Servo.h>
Servo servo;
int const inputPin = 3;
void setup() {
Serial.begin(9600);
servo.attach(9);
pinMode(...
0
votes
3
answers
3k
views
Interrupt on button press + debouncing
I want to have an interrupt function executed whenever a button is pressed.
The button is connected to pin 2 and the GND. Therefore, the pin is turned to LOW whenever the button is pressed. In ...
1
vote
0
answers
130
views
When a button is pressed, it interferes with TFT screen
I'm trying to build a simple device to monitor my heart rate. The components are the following:
A TFT 2.8" LCD screen to display relevant information for the user.
3 buttons for the user to ...
0
votes
2
answers
4k
views
The same button with one click and double click [closed]
i hope to get some help with my code.
I am trying to distinguish between a single press and a quick double press of the button with debouncing.
I am making some silly mistake in my code and i can't ...
0
votes
1
answer
214
views
Arduino Mega, 6 push buttons for each analog input (A0-A9) - closing one results in reading by other
On day to day basis I'm more of a high level programmer, with little electronics knowledge, apologies in advance if I lack some nomenclature or basics. I communicate with my Arduino Mega via firmata, ...
2
votes
1
answer
3k
views
How to count steps of a stepper motor with AccelStepper?
I want to turn on my motor and count how many total rounds it has until my limit switch is switched on. After that, I want to count rounds counterclockwise until another limit switch is pushed. For ...
-1
votes
2
answers
135
views
Question about Buttons and INPUT_PULLUP
I am ok as a developer but have very little experience if it comes to electronics/hardware. I am always too cautious and have the fear that I could wreck something with the wrong wiring. This question ...
0
votes
1
answer
305
views
Arduino alternating between high and low signal without button press
I have connected my LCD with arduino uno. I am controlling contrast with the library and not the potentiometer. I am trying to read input from the button, it is connected to pin 9 of arduino. The ...
0
votes
3
answers
1k
views
Trigger event onRelease of button
I am using the EasyButton library to detect button presses on an arduino.
I want do execute a function when the user
Presses a button
Presses and holds a button
Releases a button
Detecting when a ...
-2
votes
2
answers
419
views
Problem with push button
I am making a project where if the push button is pressed, the LCD screen will show a message. But with many trial and errors, it doesn't give the right result.
Here is the circuit:
Here is the code:
...
1
vote
0
answers
188
views
HOW convert momentary button to touch sensor TTP223?
I am trying to convert
this project https://maker.pro/arduino/projects/simple-fm-radio-receiver-with-arduino-uno-and-rda5807m
to 3 touch sensors TTP223.
But so far my new code don't work.
Please can ...
1
vote
1
answer
185
views
Can't figure out why what I'm trying to do isn't working. Trying to light up a RGB with buttons with AnalogWrite
DISCLAIMER : I have just started Arduino, like 2 days ago, I've been following some tutorials on YouTube, and I tried to do this myself, but I can't figure out why it isn't working, can't find what I'...
3
votes
1
answer
270
views
Simulating a button press using the Serial Monitor to run a Servo
I'm kind of new to Arduino and C, and I was having trouble with this sketch. I'm working on a project to control 6 servos using virtual buttons. When I hold down the button, the servo moves forward ...
2
votes
2
answers
1k
views
Toggle button switches through case statements with button debouncing
The overview of my code is that I want a toggle button to be pushed and each button push will move the code to the next case statement. In each case statement, there will be different LED functions. I ...
0
votes
3
answers
2k
views
How do I modify the value of a variable when I press a switch
I am new to arduino and I want to make a project where I have a motor spinning clockwise then when a button is pressed it spins anti-clockwise and if it is pressed again it goes back to clockwise etc.....
-1
votes
1
answer
113
views
Pressed Buttons are permanently low and one of them is not working [closed]
I am a beginner to Arduino, and I'm having a problem in a project that I am currently working on.
I was just beginning to write the code, after preparing the components and the wiring, and suddenly ...
7
votes
5
answers
5k
views
What is the best technique to design a 20 push button circuit
I will be controlling a robot with more than 10 motors which means I'll need 2 buttons each to control moving forward and backward. My controller is an Arduino mega. Is 1 pin = 1 button the best ...
5
votes
3
answers
2k
views
How do I make another action repeat inside a loop?
So, I've just started programming Arduino (and also in general), so I'm doing basic things, like switching on and off LED's.
I've made them light in a sequence and then turning them off (in the same ...
0
votes
2
answers
418
views
Problem with DC motor
I've got a circuit with Arduino UNO Rev3, DC motor, button to switch direction of rotation and potentiometer to regulate revs. The problem is that usually when I increase voltage using potentiometer, ...
1
vote
1
answer
921
views
Detect button press in a loop
I am designing simple "Simon Says game" using Arduino. Simon says is a game in which a LED pattern is played and user has to mimic the pattern. There are 10 Rounds. First Round = 1 led, ...
1
vote
2
answers
428
views
Serial.print() Inferferes with my digitalRead()
I'm running into issue properly reading a button connected to a digital I/O pin on my Adafruit Feather HUZZAH ESP8266 device.
I've implemented the debouncing script exactly as the Arduino provided ...
1
vote
1
answer
1k
views
How to connect an Output to a Pullup Input of another arduino
:tldr; Could problems occur if one connects a HIGH Output of one arduino to a PULLUP_INPUT of another while using differed power sources?
Hi I'm building some devices for a LARP Dungeon (think Escape ...
2
votes
3
answers
192
views
Send button only works when pressed immediately after
I am new to Arduino and I am trying to create a Morse code based "chat".
I can submit a message in Morse code using the send button (the one on the right,) and when I press the button on the ...
1
vote
1
answer
263
views
Arduino UNO With On / Off Module Switch + Battery Advice
So I have the following connected and the programming works fine when connect by USB
The Parts
1 Arduino UNO
1 Laser Module (KEYS)
1 Rocker Switch Module (Standard 3 PIN)
2 Variation Motors (KEYS)
1 ...
2
votes
3
answers
902
views
How do I make my piezo buzzer only hum once without repetition?
I have a problem with getting my buzzer to only do the tones I programmed in once. I know I have to add some sort of code but I'm relatively new to this so I don't really know. I want it to start ...
0
votes
2
answers
358
views
Pushbutton to initiate a 5 time flash
The following code operates in a way that LED starts to flash only if the pushbutton is pushed for one second. I want to change this and make the LED flash for 5 times, immediately on push, regardless ...
1
vote
1
answer
336
views
Arduino button voltage versus HIGH/LOW state
I'm measuring voltage between button's ground and input pole on the following sketch. When button is on off state, there's 5V there, when it's switched on and led turs on, there's 0. Is this a correct ...
2
votes
1
answer
2k
views
Making pushbutton behave as a toggle switch with ezButton - do I have to use ledstate with =! operator
I'm using ezbutton to make a pushbutton act like a toggle switch, first press doing permanent on, second press doing permanent off. I'm just trying to understand the basic coding. This project is just ...
3
votes
1
answer
373
views
Increase or decrease const byte value inside the code with a push button
I'm kind of new in the Arduino world. I decided to make a self learning project with an Arduino where it controls a conveyor that simply moves from right to left and back again. There is a start and ...
2
votes
0
answers
195
views
Single LED controlled by two pushbuttons - one of which acts like a toggle switch
Trying to control this LED with those 2 pushbuttons - one button that starts a short flashing sequence, another pushbutton acts like a toggle switch, one press bulb is on, another press bulb is off.
...
1
vote
0
answers
121
views
Why is my button not working?
I'm trying to making a traffic light for my school project but my button for the traffic light doesn't work. The traffic lights should light up normally but when the button is pressed all LEDs should ...
0
votes
1
answer
2k
views
Arduino while loop with or condition
How do I write a program to wait (delay) until one out of two buttons pressed? I have written a program to wait until a single button is pressed. It's working fine. However, if I extend it to second ...