≥{{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 วัน.
คำอธิบาย
Nonvolatile Controller x 4 Chip
ชื่อผลิตภัณฑ์ทั้งหมด เครื่องหมายการค้า แบรนด์ และโลโก้ที่ใช้ในเว็บไซต์นี้เป็นทรัพย์สินของเจ้าของที่เกี่ยวข้อง การแสดงภาพ คำอธิบาย หรือการขายผลิตภัณฑ์ที่มีชื่อเหล่านี้ เครื่องหมายการค้า แบรนด์ และโลโก้มีวัตถุประสงค์เพื่อการระบุเท่านั้นและไม่ได้มีวัตถุประสงค์เพื่อบ่งชี้ความสัมพันธ์หรือการอนุญาตจากเจ้าของสิทธิใด ๆ.
ตัวอย่าง 3 หน้แรกของแผ่นข้อมูล
QUANTITY | UNIT PRICE | PLUS UNIT PRICE | TOTAL PRICE |
---|---|---|---|
≥1: | US $1.86480 | US $1.67832 | US $1.67832 |
≥5: | US $1.24320 | US $1.11888 | US $5.59440 |
≥10: | US $1.11888 | US $1.00699 | US $10.06990 |
≥20: | US $1.08780 | US $0.97902 | US $19.58040 |
≥50: | US $1.05672 | US $0.95105 | US $47.55250 |
≥100: | US $1.02564 | US $0.92308 | US $92.30800 |
≥200: | US $0.99456 | US $0.89510 | US $179.02000 |
≥500: | US $0.98213 | US $0.88392 | US $441.96000 |
≥1000: | US $0.96348 | US $0.86713 | US $867.13000 |
ผลิตภัณฑ์ทดแทน
Product Name | Description |
---|---|
DS1225 | Real-time clock (RTC) with integrated crystal, 32.768 kHz, I2C interface, 5 V supply, 8-pin DIP/SOIC package. |
PCF8563 | Low-power CMOS real-time clock (RTC) with I2C-bus interface, 32.768 kHz crystal oscillator, 5 V supply, 8-pin SOIC package. |
MCP7940N | Integrated real-time clock (RTC) and calendar, 32.768 kHz crystal, I2C interface, 5 V supply, 8-pin SOIC package. |
DS1307 | Low-power, I2C real-time clock (RTC) with RAM, 32.768 kHz crystal, 5 V supply, 8-pin DIP/SOIC package. |
การใช้งานผลิตภัณฑ์
The DS1221 is a digital temperature sensor and thermostat IC from Maxim Integrated (now part of Analog Devices). It provides 9-bit temperature readings and can be configured to function as a thermostat with programmable high and low temperature limits. Here are some common applications and circuits where the DS1221 might be used:
Temperature Monitoring Systems:
Thermostat Control:
Consumer Electronics:
Medical Devices:
Automotive Applications:
Environmental Monitoring:
Here is a simple example of how the DS1221 can be used in a temperature monitoring circuit:
VCC (DS1221) --- 3.3V
GND (DS1221) --- GND
SDA (DS1221) --- SDA (Microcontroller)
SCL (DS1221) --- SCL (Microcontroller)
#include <Wire.h>
#define DS1221_I2C_ADDRESS 0x48
void setup() {
Wire.begin();
Serial.begin(9600);
}
void loop() {
int temp = readTemperature();
Serial.print("Temperature: ");
Serial.print(temp / 16.0);
Serial.println(" C");
delay(1000);
}
int readTemperature() {
Wire.beginTransmission(DS1221_I2C_ADDRESS);
Wire.write(0); // Point to the temperature register
Wire.endTransmission();
Wire.requestFrom(DS1221_I2C_ADDRESS, 2);
if (Wire.available() == 2) {
int msb = Wire.read();
int lsb = Wire.read();
return (msb << 8) | lsb;
}
return 0;
}
This code reads the temperature from the DS1221 and prints it to the serial monitor. The temperature is read in 9-bit format and converted to degrees Celsius.
The DS1221 is a versatile component that can be used in a wide range of applications where accurate temperature sensing and control are required. Its ease of integration with microcontrollers and its ability to function as a thermostat make it a popular choice for many projects and commercial products.
รายชื่อประเทศด้านโลจิสติกส์ทั่วโลก
ธง | ประเทศ | เวลาจัดส่งโดยประมาณ | ค่าใช้จ่ายขั้นต่ำสำหรับน้ำหนักแรก | ||
---|---|---|---|---|---|
ด่วน | การจัดส่งมาตรฐาน | ด่วน (0.5kg) | การจัดส่งมาตรฐาน (0.05kg) |
คำสั่งซื้อ
การชำระเงิน
การจัดส่ง
คูปองของขวัญ/บริการพลัส
การคืนสินค้า
การคืนสินค้าจะได้รับการยอมรับเมื่อเสร็จสิ้นภายใน 90 วันนับจากวันที่พัสดุจัดส่ง
มีข้อบกพร่อง (กรุณาให้รายงานคุณภาพจากบุคคลที่สามสำหรับผลิตภัณฑ์ที่ไม่เป็นไปตามข้อกำหนด)
ค่าขนส่งคืนต้องชำระล่วงหน้า; เราจะไม่รับการจัดส่งแบบ COD
การรับประกัน
การซื้อทั้งหมดของ UTSOURCE มีนโยบายการคืนเงินภายใน 90 วัน พร้อมการรับประกัน UTSOURCE 100 วันสำหรับข้อบกพร่องในการผลิต การรับประกันนี้จะไม่ใช้กับสินค้าที่มีข้อบกพร่องที่เกิดจากการประกอบที่ไม่ถูกต้องของลูกค้า ความล้มเหลวของลูกค้าในการปฏิบัติตามคำแนะนำ การดัดแปลงผลิตภัณฑ์ การดำเนินการที่ประมาทหรือไม่เหมาะสม
DS1221
DS1221 มีหลายแบรนด์ทั่วโลกที่อาจมีชื่อทางเลือกสำหรับ DS1221 เนื่องจากความแตกต่างทางภูมิศาสตร์หรือการเข้าซื้อกิจการ DS1221 อาจรู้จักในชื่อดังต่อไปนี้:
ตัวเลือกการซื้อ
สถานะสต็อก: 10000
ขั้นต่ำ: 2
ราคารวม:
จัดส่งฟรีสำหรับน้ำหนัก 0.5 กก. แรกสำหรับการสั่งซื้อมากกว่า US $300.00(ยกเว้นสหรัฐอเมริกา)
ด่วน: ประมาณการมาถึง {0}
การจัดส่งมาตรฐาน: ประมาณการมาถึง {0}
ประเทศ:
United States
จัดส่งด่วน:(FEDEX, UPS, DHL, TNT)จัดส่งฟรีสำหรับน้ำหนักแรก 0.5 กก. สำหรับคำสั่งซื้อที่มากกว่า 300$, น้ำหนักเกินจะมีการคิดค่าบริการแยกต่างหาก(ยกเว้นสหรัฐอเมริกา)
UTSOURCE
ตัวเลือกของผู้ขาย 3
{{pro.Parameter.Brand}}
{{pro.encapsulation}}
{{pro.Parameter.DateCode}}
{{pro.brief}}
ขั้นต่ำ:{{pro.BuyQuantity}}
การจัดส่งมาตรฐาน
ด่วน: ประมาณการมาถึง {0}
การจัดส่งมาตรฐาน: ประมาณการมาถึง {0}
ผู้เชี่ยวชาญด้านการหยุดการผลิต, เราสามารถจัดหาชิ้นส่วนอิเล็กทรอนิกส์จำนวนมากที่หยุดการผลิตและหายาก, เพื่ออำนวยความสะดวกให้กับบริษัทซ่อมบำรุง
Reply to
submit