Cách cài đặt các thư viện phần cứng Arduino Library: Difference between revisions

From MakerLab Wiki
Jump to navigation Jump to search
(Created page with " 400px|right|thumb| == Installing Additional Arduino Libraries == Once you are comfortable with the Arduino software and using the built-in...")
 
No edit summary
Line 1: Line 1:
 
== Thư viện Arduino Library là gì? ==
[[Image:Arduino_quickstart.jpg|400px|right|thumb|]]
Thư viện [https://www.arduino.cc/en/Reference/Libraries Arduino Library] là những bộ tập lệnh được cộng đồng những người sử dụng phần mềm Arduino xây dựng chuyên biệt cho các phần cứng kết nối với Arduino giúp bạn có thể dễ dàng lập trình với Arduino bằng cách gọi các hàm trong thư viện Library của phần cứng tương ứng, thư viện Arduino Library được coi là nhân tố quan trọng giúp phần mềm Arduino phổ biến như hiện nay với hàng ngàn bộ thư viện cho vô số phần cứng khác nhau giúp tiết kiệm thời gian viết và xây dựng chương trình.
 
 
== Installing Additional Arduino Libraries ==
Once you are comfortable with the Arduino software and using the built-in functions,
you may want to extend the ability of your Arduino with additional libraries.
 
== What are Libraries ? ==
[https://www.arduino.cc/en/Reference/Libraries   Libraries ]are a collection of code that makes it easy for you to connect to a sensor,display, module, etc. For example, the built-in LiquidCrystal library makes it easy to talk to character LCD displays. There are hundreds of additional libraries available on the Internet for download. The built-in libraries and some of these additional libraries are listed in the reference. To use the additional libraries, you will need to install them.


== How to Install a Library ? ==
== How to Install a Library ? ==
Line 14: Line 6:
After download well the Arduino IDE, you can right-click the icon of Arduino IDE.<br>
After download well the Arduino IDE, you can right-click the icon of Arduino IDE.<br>
Find the option "Open file location" shown as below.  
Find the option "Open file location" shown as below.  
<br>[[Image:Libraries 1.png|600px|frameless]]<br>
<br>[[Image:Libraries 1.png|600px|frameless|link=Special:FilePath/Libraries_1.png]]<br>
<br>
<br>
Then, click to open the libraries folder, you can directly add the libraries inside the folder.
Then, click to open the libraries folder, you can directly add the libraries inside the folder.
<br>[[Image:Libraries 3.png|600px|frameless]]<br>
<br>[[Image:Libraries 3.png|600px|frameless|link=Special:FilePath/Libraries_3.png]]<br>
It is very easy for you to add the libraries in this way!
It is very easy for you to add the libraries in this way!


Line 25: Line 17:
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.
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.  <br>[[Image:Add Library.png|600px|frameless]]<br>
*In the Arduino IDE, click Skietch->Import Library.  Select “Add Library...” at the top of the drop down list.  <br>[[Image:Add Library.png|600px|frameless|link=Special:FilePath/Add_Library.png]]<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>[[Image:smallePaper.png|500px|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>[[Image:smallePaper.png|500px|frameless|link=Special:FilePath/SmallePaper.png]]<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>[[Image:your sketch.png|600px|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>[[Image:your sketch.png|600px|frameless|link=Special:FilePath/Your_sketch.png]]<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.  <br>[[Image:below.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.  <br>[[Image:below.png|600px|frameless|link=Special:FilePath/Below.png]]<br>




'''More reference please click the link here:''' <br>
'''More reference please click the link here:''' <br>
https://www.arduino.cc/en/Guide/Libraries
https://www.arduino.cc/en/Guide/Libraries

Revision as of 09:35, 26 May 2021

Thư viện Arduino Library là gì?

Thư viện Arduino Library là những bộ tập lệnh được cộng đồng những người sử dụng phần mềm Arduino xây dựng chuyên biệt cho các phần cứng kết nối với Arduino giúp bạn có thể dễ dàng lập trình với Arduino bằng cách gọi các hàm trong thư viện Library của phần cứng tương ứng, thư viện Arduino Library được coi là nhân tố quan trọng giúp phần mềm Arduino phổ biến như hiện nay với hàng ngàn bộ thư viện cho vô số phần cứng khác nhau giúp tiết kiệm thời gian viết và xây dựng chương trình.

How to Install a Library ?

Here we will introduce the most simple way for you to add libraries
After download well the Arduino IDE, you can right-click the icon of Arduino IDE.
Find the option "Open file location" shown as below.
Libraries 1.png

Then, click to open the libraries folder, you can directly add the libraries inside the folder.
File:Libraries 3.png
It is very easy for you to add the libraries in this way!


Or you can refer to another method to add libraries.
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.
    File:Add Library.png


  • 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.
    File:SmallePaper.png


  • 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.
    File:Your sketch.png


  • 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.
    File:Below.png


More reference please click the link here:
https://www.arduino.cc/en/Guide/Libraries