Skip to main content

Arduino - How to Install Library

Arduino - How to Install Library

What is Library?
          Library is a collection of code that makes it easy for using modules or other devices. Arduino IDE are pre-install some libraries. If you want to install other libraries, you can download more from the Internet.

How to Install Library.
  • Install from Library Manager
  • Install from Zip file
  • Manual Installation

Install from Library Manager
         For installation of this library, you can open the Arduino IDE program. Select the Sketch > Include Library> Manage Library ...
 Search Library > Select Version > Install

Install from Zip file

         For installation of this library, you can open the Arduino IDE program. Select the Sketch > Include Library> Add .Zip Library.
 Then select the desired .zip file to add to the Arduino IDE.

Manual installation
         For installation, this library can be installed by opening the Document > Arduino > libraries and copying the library file to install immediately.

(If you open the Arduino IDE, you must close the program and reopen it.)

Referent
- https://www.arduino.cc/en/Guide/Libraries

Comments

Popular posts from this blog

Arduino กับการใช้งาน Serial Monitor

Arduino กับการใช้งาน Serial Monitor Serial Monitor คือ ส่วนหนึ่งของโปรแกรม Arduino IDE สามารถใช้งานได้ 2 อย่าง คือ - แสดงผลลัพธ์จากบอร์ด Arduino - ใช้รับข้อมูลจากผู้ใช้ แล้วส่งข้อมูลไปยังบอร์ด Arduino รูปแบบการใช้งาน Serial Monitor เริ่มต้นใช้งาน void setup() {    Serial.begin(9600); } แสดงผลออกทาง Serial Monitor Serial.print("Hello World");       /* แสดงคำว่า Hello World */ Serial.println("Hello World");     /* แสดงคำว่า Hello World และขึ้นบรรทัดใหม่ */   อ่านค่าจาก Serial Monitor Serial.read(); วิธีเปิด Serial Monitor 1. กด Ctrl + Shift + M 2. กด Icon ตัวอย่างการแสดงผลลัพธ์จากบอร์ด Arduino แสดงผลลัพธ์จากบอร์ด Arduino ตัวอย่างการรับค่าจาก Serial Monitor - ส่ง 1 เพื่อ On LED -  ส่ง 0 เพื่อ Off LED แสดงผลลัพธ์การรับค่าจาก Serial Monitor * ถ้าไม่สำเร็จ ตรวจสอบว่าเลือก No line ending และบอดเรทเป็น 9600 เเล้วหรือยัง

Arduino - Analog Read Voltage

Arduino - Analog Read Voltage Analog Signal This article is a continuation of  Arduino - AnalogRead , read analog signal from potentiometer same old article, but this article add calculate ADC from 0 - 1023 to 0-5volt Voltage = Analog value * (5.0/1023) Arduino board read analog value from potentiometer Example Program After uploading the program onto the Arduino board, see the results of running the program from Serial Monitor or Serial Plotter. Serial Monitor  Serial Plotter