How to Install Arduino Library: Difference between revisions
Jump to navigation
Jump to search
Keyestudio (talk | contribs) No edit summary |
Keyestudio (talk | contribs) No edit summary |
||
Line 9: | Line 9: | ||
*In the Arduino IDE, click Skietch->Import Library. | *In the Arduino IDE, click Skietch->Import Library. Select “Add Library...” at the top of the drop down list.<br> | ||
<br>[[Image:Add Library.png|600px|frameless]]<br> | <br>[[Image:Add Library.png|600px|frameless]]<br> | ||
*You will be prompted to select the library you would like to add. Find the .zip file's location and open it. Here I select a library named smallePaper .<br> | *You will be prompted to select the library you would like to add. Find the .zip file's location and open it. Here I select a library named smallePaper .<br> | ||
<br>[[Image:smallePaper.png|500px|frameless]]<br> | <br>[[Image:smallePaper.png|500px|frameless]]<br> | ||
*Return to the Sketch > Import Library menu. You should now see the library at the bottom of the drop-down menu. It is ready to be used in your sketch. <br> | *Return to the Sketch > Import Library menu. You should now see the library at the bottom of the drop-down menu. It is ready to be used in your sketch. <br> | ||
<br>[[Image:your sketch.png|600px|frameless]]<br> | <br>[[Image:your sketch.png|600px|frameless]]<br> | ||
*Now the zip file has been installed in your Arduino sketches directory. You can see the location of the library: File->Preferences->Sketchbook location, and can change the location. Generally, we will change it as ….Arduino – 1.0.5\libraries as shown below. | *Now the zip file has been installed in your Arduino sketches directory. You can see the location of the library: File->Preferences->Sketchbook location, and can change the location. Generally, we will change it as ….Arduino – 1.0.5\libraries as shown below. | ||
<br>[[Image:below.png|600px|frameless]]<br> | <br>[[Image:below.png|600px|frameless]]<br> | ||
<br> | <br> |
Revision as of 16:01, 28 August 2017
Once you are comfortable with the Arduino software, you may want to extend the library to meet your requirement.
Libraries are often distributed as a ZIP file or folder. The name of the folder is the name of the library. Inside the folder will be a .cpp file, a .h file and often a keywords.txt file, examples folder, and other files required by the library.
Take Arduino1.0.5 as an example, you can install a library in Arduino IDE. And do not unzip the downloaded library, leave it as is.
- In the Arduino IDE, click Skietch->Import Library. Select “Add Library...” at the top of the drop down list.
- You will be prompted to select the library you would like to add. Find the .zip file's location and open it. Here I select a library named smallePaper .
- Return to the Sketch > Import Library menu. You should now see the library at the bottom of the drop-down menu. It is ready to be used in your sketch.
- Now the zip file has been installed in your Arduino sketches directory. You can see the location of the library: File->Preferences->Sketchbook location, and can change the location. Generally, we will change it as ….Arduino – 1.0.5\libraries as shown below.