Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
1 vote
1 answer
212 views

How to test custom cables?

I'm trying to make a cable checker to help me make custom cables for my computer. I'm thinking I plug the cable ends into sockets on the device, then the Arduino checks between different pins to make ...
Eggo's user avatar
  • 11
1 vote
0 answers
339 views

Arduino pull-up resistor not working

I made a circuit where when I press a button, a LED lights up using a pull-down resistor. But when I tried the same with a pull-up resistor instead, the LED remains off (whereas I expected it to be on ...
lizardsudoku's user avatar
2 votes
1 answer
1k views

Configure input pullup through registers

I can set pin mode to input or output through the DDRx registers. How can I enable the internal pullup resister through a register?
iHnR's user avatar
  • 127
2 votes
1 answer
10k views

How many UNO pins have internal pull up resistors?

I am referring to all digital I/O pins 0 to 13 and A0 to A5.
Abdalrahman Seliem's user avatar
1 vote
3 answers
11k views

Do I need a pull-up/down resistor for button LED circuit?

When reading up on how to make a circuit that turns an LED on when a button is held down, I keep finding people saying a pull up or down resistor must be involved, to avoid the flickering state of the ...
4u53r's user avatar
  • 113
2 votes
2 answers
6k views

Minimum value I2C-pull up resistor for arduino

I'm trying to determine the minimum value of pull resistor for Arduino Uno The datasheets says for arduino; VOL = 0,4 for IOL = 20 mA. (VDD = 5V) For formula for calculation of minimal pull-up is: ...
Kono's user avatar
  • 21
1 vote
3 answers
5k views

digitalRead not reading input pin of ESP8266-01

I am trying to use a on-off switch with the ESP8266 to change whether GPI02 is HIGH or LOW. I am using GPIO3 as input. My circuit looks like this: The red area to the right is a relay, I wasn't sure ...
ewizard's user avatar
  • 173
0 votes
1 answer
598 views

How do I pull up D1-D6 using 10k ohm resistors?

I'm using push buttons to control CR servos (button1=turn CW; button2=turn CCW). How do I pull up D1-D6 and what does that do exactly? I can't find a tutorial that explains it well enough how to use ...
mkpappu's user avatar
  • 103
0 votes
2 answers
192 views

Digital Pin State - Some 1, Some 0

I'm running a sketch that looks for inputs to digital pins 3, 4, 5, 6, and 7. The gist of the sketch is that it's a digitalRead() from 3-7 with a Serial.println() to the monitor. The odd thing is ...
acpilot's user avatar
  • 653
0 votes
1 answer
2k views

Second I2C address not accepted

I have set up 2 DHT22 sensors and 2 BMP280 sensors with an Arduino Uno SMD R3 board. The DHTs are working fine and are outputting correct temperature and humidity values to the Serial monitor. The ...
DK2AX's user avatar
  • 85
2 votes
2 answers
15k views

Disabling i2c internal pull up resistors

How do you do this? I've been digging around and I can see that I should do this and supply my own external pull up resistors but I don't know exactly how to disable them. The pages I've been reading ...
David Tran's user avatar