จำนวนชิ้น | ส่วนลดต่อชิ้น | ราคาสุทธิต่อชิ้น |
{{(typeof focus_pdata.price_list[idx+1] == 'undefined')?('≥ '+price_row.min_quantity):((price_row.min_quantity < (focus_pdata.price_list[idx+1].min_quantity - 1))?(price_row.min_quantity+' - '+(focus_pdata.price_list[idx+1].min_quantity - 1)):price_row.min_quantity)}} | {{number_format(((focus_pdata.price_old === null)?focus_pdata.price:focus_pdata.price_old) - price_row.price,2)}} บาท | {{number_format(price_row.price,2)}} บาท |
คงเหลือ | ชิ้น |
จำนวน (ชิ้น) |
- +
|
ซื้อเลย หยิบลงตะกร้า ซื้อเลย หยิบลงตะกร้า คุณมีสินค้าชิ้นนี้ในตะกร้า 0 ชิ้น
ช่องทางสั่งซื้ออื่น ๆ
|
|
|
|
คุยกับร้านค้า | |
{{ size_chart_name }} |
|
หมวดหมู่ | จอ LCD |
สภาพ | สินค้าใหม่ |
เพิ่มเติม | |
สภาพ | สินค้ามือสอง |
เกรด | |
สถานะสินค้า | |
ระยะเวลาจัดเตรียมสินค้า | |
เข้าร่วมโปรโมชั่น | |
ข้อมูล |
น้ำหนัก
บาร์โค้ด
ลงสินค้า
อัพเดทล่าสุด
|
||||||||||||||||||
รายละเอียดสินค้า |
หน้าจอพร้อมปุ่มกด LCD แบบ Shield บน Arduino
ตำแหน่งขาต่างๆ
ตัวอย่าง Code การใช้งาน หน้าจอพร้อมปุ่มกด LCD แบบ Shield บน Arduino กับ Uno r3 /** * www.ModuleMore.com * ตัวอย่างการใช้งาน Shield LCD พร้อมปุ่มกด */ #include <Arduino.h> #include <Wire.h> #include <LiquidCrystal.h> const int LCD_RS = 8; const int LCD_EN = 9; const int LCD_D0 = 4; const int LCD_D1 = 5; const int LCD_D2 = 6; const int LCD_D3 = 7; const int BUTTON_INPUT = A0; // const int LCD_BLACKLIGHT = 10; LiquidCrystal lcd(LCD_RS, LCD_EN, LCD_D0, LCD_D1, LCD_D2, LCD_D3); void setup() { lcd.begin(16, 2); lcd.setCursor(0, 0); lcd.print("ModuleMore.com"); lcd.setCursor(0, 1); lcd.print("Press Key:"); } void loop() { int val = analogRead(BUTTON_INPUT); lcd.setCursor(10, 1); if (val < 60) { lcd.print("Right "); } else if (val < 200) { lcd.print("Up "); } else if (val < 400) { lcd.print("Down "); } else if (val < 600) { lcd.print("Left "); } else if (val < 800) { lcd.print("Select"); } } ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
||||||||||||||||||
เงื่อนไขอื่นๆ |
|
||||||||||||||||||
Tags |
หน้าที่เข้าชม | 2,071,829 ครั้ง |
ผู้ชมทั้งหมด | 1,332,555 ครั้ง |
ร้านค้าอัพเดท | 5 ก.ย. 2568 |