จำนวนชิ้น | ส่วนลดต่อชิ้น | ราคาสุทธิต่อชิ้น |
{{(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)}} บาท |
คงเหลือ | 18 ชิ้น |
จำนวน (ชิ้น) |
- +
|
ซื้อเลย หยิบลงตะกร้า ซื้อเลย หยิบลงตะกร้า คุณมีสินค้าชิ้นนี้ในตะกร้า 0 ชิ้น
ช่องทางสั่งซื้ออื่น ๆ
|
|
|
|
คุยกับร้านค้า | |
{{ size_chart_name }} |
|
หมวดหมู่ | Matrix |
สภาพ | สินค้าใหม่ |
เพิ่มเติม | |
สภาพ | สินค้ามือสอง |
เกรด | |
สถานะสินค้า | |
ระยะเวลาจัดเตรียมสินค้า | |
เข้าร่วมโปรโมชั่น | |
ข้อมูล |
น้ำหนัก
บาร์โค้ด
ลงสินค้า
อัพเดทล่าสุด
|
รายละเอียดสินค้า |
4-channel TTP224 capacitive touch module digital touch sensor human body touch switch TTP224 ปุ่มกดแบบสัมผัส 4 ช่อง 4, the module can set the output mode, key output mode, maximum output time and fast / low power selection /* * This is the Arduino code for TTP 224 4 Channel Capacitive Touch switch * the output pen 10, 11, 12 and 13 will be ON when key 1 to 4 are pressed respectively * pressing button 1, Turns pin 10 ON * pressing button 2, Turns pin 11 ON * pressing button 3, Turns pin 12 ON * pressing button 4, Turns pin 13 ON * * Written by Ahmad Nejrabi for Roboja Video * Date: Dec 02, 2017, in Ajax, Ontario, Canada * Permission granted to share this code given that this * note is kept with the code. * Disclaimer: this code is "AS IS" and for educational purpose only. * */ int LD = 200; // Loop Delay. Do not change. void setup() { Serial.begin(9600); // out pins pinMode(10, OUTPUT);// LED for button 1 pinMode(11, OUTPUT);// LED for button 2 pinMode(12, OUTPUT);// LED for button 3 pinMode(13, OUTPUT);// LED for button 4 // input pins pinMode(2, INPUT);// Button 1 input pin 2 pinMode(3, INPUT);// Button 2 input pin 3 pinMode(4, INPUT);// Button 3 input pin 4 pinMode(5, INPUT);// Button 4 input pin 5 } void loop() { // button 1 action if(digitalRead(2)){ Serial.println("Button 1 Touched "); digitalWrite(10, HIGH); // Turn the LED ON delay(LD); }else{ digitalWrite(10, LOW);// Turn OFF the LED } // button 2 action if(digitalRead(3)){ Serial.println("Button 2 Touched "); digitalWrite(11, HIGH); // Turn the LED ON delay(LD); }else{ digitalWrite(11, LOW);// Turn OFF the LED } // button 3 action if(digitalRead(4)){ Serial.println("Button 3 Touched "); digitalWrite(12, HIGH); // Turn the LED ON delay(LD); }else{ digitalWrite(12, LOW);// Turn OFF the LED } // button 4 action if(digitalRead(5)){ Serial.println("Button 4 Touched "); digitalWrite(13, HIGH); // Turn the LED ON delay(LD); }else{ digitalWrite(13, LOW);// Turn OFF the LED } } ![]() ![]() ![]() ![]() |
เงื่อนไขอื่นๆ |
|
Tags |