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

From MakerLab Wiki
Revision as of 09:35, 26 May 2021 by Hnaoab (talk | contribs)
Jump to navigation Jump to search

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