I believe you can change the drive strengths of the GPIO outputs. I need to drive one LED at 16mA. However I cant find anywhere where you can do this. I am using the RPI.GPIO python module so it would be handy if this could be done in python.
Asked
Active
Viewed 5,143 times
1 Answers
1
GPIO source/sink current can be programmed to be 2 mA to 16 mA. The hardware default is 8 mA, but the OS may change it to something else.
For details and caveats, see: http://www.scribd.com/doc/101830961/GPIO-Pads-Control2

lenik
- 11,541
- 1
- 30
- 37
-
1Thanks. I need to set bits 2:0 = 111b. Any idea how I would go about doing that? – spiderplant0 Sep 26 '13 at 01:00
-
1here are code samples: http://raspberrypi.stackexchange.com/a/1154/7274 – lenik Sep 26 '13 at 01:52