Skip to main content

Arduino - AnalogRead

Arduino - AnalogRead

Analog Signal
What is Analog Signal?
Analog Signal is a continuous signal. It is different from the discrete digital signal. Analog signal are use for electronic system, mechanical, hydraulic, and other system.

Arduino board specifications (in this case use Arduino Uno Board):
  • Read analog value from 0-5V.
  • 10-bit resolution (0-1023)
  • Readable resolution 5V/1024 = 0.0049V (4.9mV)
  • It takes about 100 microseconds / 1 time
In this article, you will lean how to use Arduino boards to read analog signals. Using the Arduino board to read the analog signal from potentiometer. 
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 Plottor

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 - How to use Liquid Crystal Display I2C

Arduino - How to use Liquid Crystal Display I2C In this article will be How to use Arduino board with Liquid Crystal I2C, It same  Arduino Lcd Liquid Crystal Display    Examples applications, Arduino boards send text or output from sensor to show on LCD screen.  But there is another control unit (PCF8574) to control the screen. This reduces the number of pins to 4 lines. Details of PCF8574 (LCD  Controller ) Signal pin (i2c) from Arduino Board Potentiometer for adjust Contrast of character Address Selector pad Black light jumper  Circuit Install Library go to Library Manager -> Search  "LiquidCrystal i2c" -> Install  ( See more ) Scan I2C Adress  of  PCF8574  (LCD  Controller ) Check connection and Search Address  of  PCF8574  (LCD  Controller )  ( See more ) After find the PCF8574 Address, Take this in Example Code (0x27 or 0x3F) Example Code outpu...