Voltage divider resistor range help

Hi,

I have a 5v arduino that connects to a 3v3 lcd display (st7565r controller). To communicate over SPI, i need to use a voltage divider to lower the volts for both VDD and signal lines (A0, SI, CLK and RST). I need a 1:2 scale for resistors to get 3v3

What resistor range do i need to use?

  • 100ohm and 200ohm
  • 1k / 2k
    -100k / 200k

If somebody could explain why sometimes i see high abd sometimes low, that would be cool.

Thanks
Rob

For VDD you need a regulator, not a voltage divider.
I don't know how much current you need, here are some 500mA parts
http://www.digikey.com/product-search/en?pv1066=110&FV=fff40027%2Cfff80182%2Cc00016%2C7ec0045%2C10a40002&k=ldo&mnonly=0&newproducts=0&ColumnSort=0&page=1&stock=1&quantity=0&ptm=0&fid=0&pageSize=25

For the divider:
Vout = Vin * R2/(R1 + R2) R1 connects to Vin, R2 connects to Gnd, their junction is Vout
Vin = 5V, Vout = 3.3, R2 = 5000, solve for R1 -> 2500
Could go lower; keep 5V/(R1 +R2) < 0.01A (10mA)
So 1K/2K, 500/1000 at the lowest
Don't go to high, current available for the display becomes too low.

Thanks... I know how the divider works, but for the signals can i use higher resistance because the required current for signals is not so high?

I am confused why some schematics use 100ohm range, and others use 10k range.

For converting 5 V to 3.3 V on signal lines that have high impedance (like Arduino inputs) you can use resistors in the range of 100K to 330K. That results in lower power consumption of the overall circuit. Resistors that large will slow the response time for very fast signals (100 KHz or higher) but for lower frequencies, like signals to a display, you should be OK.

Thank you for explaining. I will examine 'high impedance' further, because i have no clue what that means...

jremington:
For converting 5 V to 3.3 V on signal lines that have high impedance (like Arduino inputs) you can use resistors in the range of 100K to 330K. That results in lower power consumption of the overall circuit. Resistors that large will slow the response time for very fast signals (100 KHz or higher) but for lower frequencies, like signals to a display, you should be OK.

SPI from an Arduino can run at 8MHz, use 1k and 2k2, nothing larger or you'll compromise
the edges. 8MHz is slow enough for an SPI graphics display BTW!

[logic signals have to have fast edges or the next gate can malfunction, particularly important
for clock signals like SCLK - otherwise a schmitt-trigger may be needed]