≥{{item.MinNumber}}:
{{pro.LadderPrices[num].viewPrice}}
{{item.viewPrice}}
คลิกที่นี่เพื่อเข้าสู่เว็บไซต์ Utsource
สวัสดี! เข้าสู่ระบบ หรือ ลงทะเบียนตอนนี้
APP แผ่นข้อมูล 380K likes Utsourceซื้อ(0)
การสอบถาม(0)
Dear customers, due to the implementation of the GDPR policy in Europe, UTSOURCE has also made adjustment accordingly to meet the policy requirements. Please read the new privacy policy carefully and this window will no longer pop up after you accept it.
Delivery Address
+ เพิ่มที่อยู่
ที่อยู่จัดส่งใหม่
* กรุณากรอกหมายเลขโทรศัพท์มือถือให้ถูกต้องเพื่อให้แน่ใจว่าคุณจะได้รับข้อมูลการติดตามตรงเวลา.
รหัสประเทศ
โปรด
Utsource certified used parts
ชิ้นส่วนที่ใช้แล้วที่ได้รับการรับรองจาก Utsource ให้การรับประกันดังต่อไปนี้:
1. Utsource จะตรวจสอบสินค้า รวมถึงการตรวจสอบลักษณะภายนอก (ไม่มีความเสียหายที่รุนแรงต่อรูปลักษณ์) เลือกซัพพลายเออร์ที่มีคุณภาพและซื่อสัตย์ และรับประกันอัตราคุณภาพ 98%
2. ชิ้นส่วนบางส่วนจะถูกทดสอบโดยเครื่องจักร.
3. ชิ้นส่วนที่ได้รับการรับรองจาก Utsource สามารถคืนและขอเงินคืนได้โดยไม่มีเงื่อนไขภายใน 60 วัน.
ชื่อผลิตภัณฑ์ทั้งหมด เครื่องหมายการค้า แบรนด์ และโลโก้ที่ใช้ในเว็บไซต์นี้เป็นทรัพย์สินของเจ้าของที่เกี่ยวข้อง การแสดงภาพ คำอธิบาย หรือการขายผลิตภัณฑ์ที่มีชื่อเหล่านี้ เครื่องหมายการค้า แบรนด์ และโลโก้มีวัตถุประสงค์เพื่อการระบุเท่านั้นและไม่ได้มีวัตถุประสงค์เพื่อบ่งชี้ความสัมพันธ์หรือการอนุญาตจากเจ้าของสิทธิใด ๆ.
Parameter | Description |
---|---|
Part Number | APDS-9930 |
Function | Approaching Sensor with Gesture Detection (Non-Contact) |
Operating Voltage | 1.7V to 3.6V |
Current Consumption | < 150 μA (in low power mode) |
Gesture Detection | Up/Down, Left/Right, Near/Far |
Proximity Detection | Yes |
Ambient Light Sensing | Yes |
Interface | I2C |
Operating Temperature | -40°C to +85°C |
Package Type | QFN-16 (4x4 mm) |
Field of View | 110° |
Gesture Recognition | Supports complex gesture patterns |
Power Modes | Low Power, High Performance |
Integration Time | Adjustable for ambient light sensing |
Data Rate | Up to 1 kHz |
Supply Current | 100 μA (typical) |
Sensitivity | Adjustable via software |
Output | Digital (I2C) |
Power Supply:
I2C Interface:
Initialization:
Gesture Detection:
Proximity Detection:
Ambient Light Sensing:
Power Management:
Calibration:
Software Library:
Troubleshooting:
QUANTITY | UNIT PRICE | PLUS UNIT PRICE | TOTAL PRICE |
---|---|---|---|
≥1: | US $3.20000 | US $3.00800 | US $3.00800 |
≥5: | US $2.56000 | US $2.40640 | US $12.03200 |
≥10: | US $1.92000 | US $1.80480 | US $18.04800 |
ผลิตภัณฑ์ทดแทน
Product Name | Description |
---|---|
APDS-9960 | High-performance proximity, ambient light, RGB color, and gesture sensor. It supports I2C communication and is designed for applications requiring high sensitivity and accuracy in detecting gestures and ambient light conditions. |
VL53L0X | High-performance laser-ranging sensor that measures absolute distances up to 2 meters. It features a compact design and low power consumption, making it suitable for proximity sensing and gesture recognition applications. |
MLX75308 | Infrared proximity sensor with integrated signal processing, designed for accurate distance measurement and object detection. It is ideal for non-contact gesture recognition and proximity sensing in consumer electronics. |
TSL1401CL | Linear image sensor with 128 photodiodes, capable of detecting light intensity variations. It can be used for simple gesture recognition and proximity sensing by detecting changes in light patterns. |
GY-906 | Non-contact infrared temperature sensor that also includes a proximity sensor. It can detect both temperature and distance, making it useful for applications requiring dual sensing capabilities. |
การใช้งานผลิตภัณฑ์
The APDS-9930 is a high-performance, integrated gesture and proximity sensor that uses infrared (IR) technology to detect motion and proximity without physical contact. It is commonly used in various circuits and applications where non-contact detection of gestures and movements is required. Here are some typical circuits and applications that utilize the APDS-9930:
Smartphones and Tablets:
Smart Home Devices:
Consumer Electronics:
Automotive Applications:
Healthcare Devices:
Industrial Automation:
Security Systems:
Interactive Displays:
Here is a basic example of how the APDS-9930 can be integrated into a circuit:
+5V -----> VCC (Pin 1)
GND -----> GND (Pin 2)
SCL -----> SCL (Pin 3) (Connect to I2C SCL line)
SDA -----> SDA (Pin 4) (Connect to I2C SDA line)
INT -----> INT (Pin 5) (Optional: Connect to an interrupt pin on the microcontroller)
#include <Wire.h>
#include <Adafruit_APDS9960.h>
Adafruit_APDS9960 apds;
void setup() {
Serial.begin(9600);
Wire.begin();
if (!apds.begin()) {
Serial.println("APDS-9960 not found!");
while (1);
}
apds.enableGestureSensor(true);
}
void loop() {
if (apds.isGestureAvailable()) {
uint8_t gesture = apds.readGesture();
switch (gesture) {
case DIR_UP:
Serial.println("Up");
break;
case DIR_DOWN:
Serial.println("Down");
break;
case DIR_LEFT:
Serial.println("Left");
break;
case DIR_RIGHT:
Serial.println("Right");
break;
default:
Serial.println("Unknown gesture");
break;
}
}
}
This code initializes the APDS-9960 sensor and reads gestures, printing them to the serial monitor. You can modify this code to perform specific actions based on the detected gestures.
รายชื่อประเทศด้านโลจิสติกส์ทั่วโลก
ธง | ประเทศ | เวลาจัดส่งโดยประมาณ | ค่าใช้จ่ายขั้นต่ำสำหรับน้ำหนักแรก | ||
---|---|---|---|---|---|
ด่วน | การจัดส่งมาตรฐาน | ด่วน (0.5kg) | การจัดส่งมาตรฐาน (0.05kg) |
คำสั่งซื้อ
การชำระเงิน
การจัดส่ง
คูปองของขวัญ/บริการพลัส
การคืนสินค้า
การคืนสินค้าจะได้รับการยอมรับเมื่อเสร็จสิ้นภายใน 90 วันนับจากวันที่พัสดุจัดส่ง
มีข้อบกพร่อง (กรุณาให้รายงานคุณภาพจากบุคคลที่สามสำหรับผลิตภัณฑ์ที่ไม่เป็นไปตามข้อกำหนด)
ค่าขนส่งคืนต้องชำระล่วงหน้า; เราจะไม่รับการจัดส่งแบบ COD
การรับประกัน
การซื้อทั้งหมดของ UTSOURCE มีนโยบายการคืนเงินภายใน 90 วัน พร้อมการรับประกัน UTSOURCE 100 วันสำหรับข้อบกพร่องในการผลิต การรับประกันนี้จะไม่ใช้กับสินค้าที่มีข้อบกพร่องที่เกิดจากการประกอบที่ไม่ถูกต้องของลูกค้า ความล้มเหลวของลูกค้าในการปฏิบัติตามคำแนะนำ การดัดแปลงผลิตภัณฑ์ การดำเนินการที่ประมาทหรือไม่เหมาะสม
APDS-9930 Approaching Sensor Gesture Detection Non Contact
APDS-9930 Approaching Sensor Gesture Detection Non Contact มีหลายแบรนด์ทั่วโลกที่อาจมีชื่อทางเลือกสำหรับ APDS-9930 Approaching Sensor Gesture Detection Non Contact เนื่องจากความแตกต่างทางภูมิศาสตร์หรือการเข้าซื้อกิจการ APDS-9930 Approaching Sensor Gesture Detection Non Contact อาจรู้จักในชื่อดังต่อไปนี้:
ตัวเลือกการซื้อ
จัดส่งฟรีสำหรับน้ำหนัก 0.5 กก. แรกสำหรับการสั่งซื้อมากกว่า US $300.00(ยกเว้นสหรัฐอเมริกา)
ด่วน: ประมาณการมาถึง {0}
การจัดส่งมาตรฐาน: ประมาณการมาถึง {0}
ประเทศ:
United States
จัดส่งด่วน:(FEDEX, UPS, DHL, TNT)จัดส่งฟรีสำหรับน้ำหนักแรก 0.5 กก. สำหรับคำสั่งซื้อที่มากกว่า 300$, น้ำหนักเกินจะมีการคิดค่าบริการแยกต่างหาก(ยกเว้นสหรัฐอเมริกา)
UTSOURCE
ตัวเลือกของผู้ขาย 0
{{pro.Parameter.Brand}}
{{pro.encapsulation}}
{{pro.Parameter.DateCode}}
{{pro.brief}}
ขั้นต่ำ:{{pro.BuyQuantity}}
การจัดส่งมาตรฐาน
ด่วน: ประมาณการมาถึง {0}
การจัดส่งมาตรฐาน: ประมาณการมาถึง {0}
ผู้เชี่ยวชาญด้านการหยุดการผลิต, เราสามารถจัดหาชิ้นส่วนอิเล็กทรอนิกส์จำนวนมากที่หยุดการผลิตและหายาก, เพื่ออำนวยความสะดวกให้กับบริษัทซ่อมบำรุง
Reply to
submit