guys can you tell me where to donwload arduino libraries?
![]()
couldn't finish my program help pls
![]()
Into a folder called libraries wherever you have your sketches

I may have misunderstood... did you mean where to download them from? (I thought you meant where to download them to)
Often the component or board manufacturers like adafruit will link to an appropriate library from their website, or if all else fails just Google along the lines of "partXYZ arduino library"
thats what i mean sir. hehe..if where from can i download those libraries. can you give some website sir? i need EEprom and servo libraries sir. thanks much!
The servo library is part of your install already.
To use the built-in eeprom you don't need a library, but if you have 12c eeprom then check here for Rob Tillaart's library
(Actually I'm a bit confused about the library for the internal eeprom. My old code shows it include'd in the sktech but I don't see it in the install directory which is a bit odd....)
JimboZA:
(Actually I'm a bit confused about the library for the internal eeprom. My old code shows it include'd in the sktech but I don't see it in the install directory which is a bit odd....)
Might depend on how it's included. There is a difference between
#include <somefile.h>
and
#include "somefile.h"
The former will only look in the standard library directory, the latter in your project directory followed by the standard library directory.
So maybe you have the eeprom library in the project directory?
sterretje:
So maybe you have the eeprom library in the project directory?
That was my thought too, although it's an install library. But it's not there either. I just upgraded to 167 so between 105r2 and 167 the library has disappeared. I'll start a thread on that so as not to hijack this one.
Ok so that was sorted out in another thread, so back to OP's answer.
If you want to use the built-in EEPROM (if you have any), that library is already installed as shown.
tnx for the Eeprom library sir! hehe! i downloaded a library of Eeprom b4 you posted this but the one i downloaded was defective. some codes for that library still didnt work such as Eeeprom.put which is weird but some codes worked very well like eeprom.clear. thnx so much!

