Skip to main content

Arduino - Button

Arduino - Button

Button And Switch
This article will give an example how to use Arduino board with a switch. The Arduino board reads the digital status of the switch as an input to execute an your functions.

There are two types of switching circuits.

  1. pull-up (Normally the status is '1', If you press the button status is set to '0')
  2. pull-down (Normally the status is '0', If you press the button status is set to '1')
Switching circuit, pull-down

In this article, we will select a pull-up circuit (Normally the status is '1', If you press the button status is set to '0')
Example.
pull-up circuit switch
Example Program
Arduino has special functions for internal pull-up circuits. So we can use only switch. (Must be declared as INPUT_PULLUP)
Internal pull-up circuit switch
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

Comments

Popular posts from this blog

Arduino กับการใช้งานจอ LCD (Liquid Crystal Display) แบบ I2C

Arduino กับการใช้งานจอ LCD (Liquid Crystal Display) แบบ I2C         ในบทความนี้จะเป็นบทความการใช้งานบอร์ด Arduino กับจอ Liquid Crystal ขนาด 16x2 แบบ I2C ลักษณะการใช้งานคล้ายๆ บทความ  Arduino กับการใช้งานจอ LCD (Liquid Crystal Display)  คือ ให้บอร์ด Arduino ส่งข้อมูลต่างๆ เช่น ข้อความ หรือ ค่าเอาต์พุตจากเซ็นเซอร์ เพื่อเเสดงผลยังหน้าจอ LCD เเต่จะมีชุดควบคุม(PCF8574) สำหรับควบคุมการทำงานของจออีกทีหนึ่ง จึงทำให้ลดจำนวนขาการใช้งาน เหลือเพียง 4 เส้น รายละเอียดต่างๆ ของชุดควบคุมจอจะมีดังนี้ ขาสัญญาณสำหรับต่อเข้ากับบอร์ด Arduino ตัวต้านทานแบบปรับค่าได้สำหรับปรับ Contrast ของตัวอักษร ตัวเลือก Address ของจอ จั๊มเปอร์เเบล็คไลท์ การเชื่อมต่อระหว่างจอ LCD และบอร์ด Arduino ติดตั้งไลบรารี่ ไปที่ Library Manager ค้นหา "LiquidCrystal i2c" เเล้วติดตั้ง ( ดูการติดตั้งไลบรารี่เพิ่มเติม ) ค้นหา I2C Adress ของชุดควบคุมจอ เพื่อตรวจสอบการเชื่อมต่อ เเละ ค้นหา Address ของชุดควบคุมจอ ( ดูการแสกน I2C Adress เพิ่มเติม ) หลังจากได้ Address เเล้ว นำ Address ที่ได้ไปใส่ในตัว

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 เเล้วหรือยัง