 
| จำนวนชิ้น | ส่วนลดต่อชิ้น | ราคาสุทธิต่อชิ้น | 
| {{(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 }} |  | 
| หมวดหมู่ | โมดูลสวิตช์ / Joystick / Keypad | 
| สภาพ | สินค้าใหม่ | 
| เพิ่มเติม | |
| สภาพ | สินค้ามือสอง | 
| เกรด | |
| สถานะสินค้า | |
| ระยะเวลาจัดเตรียมสินค้า | |
| เข้าร่วมโปรโมชั่น | |
| ข้อมูล | น้ำหนัก  บาร์โค้ด  ลงสินค้า  อัพเดทล่าสุด  | 
| รายละเอียดสินค้า | ติดต่อต้านทาน 500 (Ω) ความต้านทานของฉนวน 100M (Ω) คีย์ 150-200N การบังคับการใช้งาน เวลา Rebound 1 (MS) ชีวิต 100 ล้านบาท (ครั้ง)    Pad ขนาด: 69.2x76.9 x 0.8mm ความยาวสายเคเบิล: 85mm (รวมถึงการเชื่อมต่อ) เชื่อมต่อ: ดูปองท์ 7 ขา, 0.1 นิ้ว (2.54 เดือน) ทางลาด สไตล์เมา: ยึดมั่นในตัวเอง แม็กซ์ คะแนนวงจร: 35VDC, 100mA ฉนวนกันความร้อนข้อมูลจำเพาะ .: 100M โอห์ม 100V ฉนวนทน: 250Vrms (60Hz, 1min) ตัวอย่างการใช้งาน 4x4 Matrix Keypad -> arduino 
 
 1 2 #include <Keypad.h> 3 4 const byte ROWS = 4; //four rows 5 const byte COLS = 3; //three columns 6 char keys[ROWS][COLS] = { 7 {'1','2','3'}, 8 {'4','5','6'}, 9 {'7','8','9'}, 10 {'*','0','#'} 11 }; 12 byte rowPins[ROWS] = {9, 8, 7, 6}; //connect to the row pinouts of the keypad 13 byte colPins[COLS] = {4, 3, 2}; //connect to the column pinouts of the keypad 14 15 Keypad keypad = Keypad( makeKeymap(keys), rowPins, colPins, ROWS, COLS ); 16 17 void setup(){ 18 Serial.begin(9600); 19 } 20 21 void loop(){ 22 char key = keypad.getKey(); 23 24 if (key){ 25 Serial.println(key); 26 } 
 27 }     | 
| เงื่อนไขอื่นๆ | 
เมทริกซ์ 12 คีย์อาร์เรย์เมมเบรนสวิทช์ปุ่มกดแป้นพิมพ์สำหรับ Arduino | 
| Tags | 
 
     
         
         
					