0388724758
Tiếng Việt (VND)
Thương hiệu
Mã khách hàng
Mô tả
Vào: 3.3~5.5VDC
Hết hàng
(Đặt mua để có hàng sớm)
Min: 1
Bội số: 1
Đơn vị bán: Cái
Số lượng | Đơn giá | Thành tiền |
1+ | 44,000 đ | 44,000 đ |
20+ | 43,000 đ | 860,000 đ |
50+ | 42,000 đ | 2,100,000 đ |
Thuộc tính | Giá trị | Tìm kiếm |
---|---|---|
Danh mục | Mạch Thời Gian Thực RTC | |
RoHS | ||
Điện áp hoạt động | 3.3~5.5V | |
0 Sản phẩm tương tự |
Thuộc tính | Giá trị | Tìm kiếm |
---|---|---|
Danh mục | Mạch Thời Gian Thực RTC | |
RoHS | ||
Điện áp hoạt động | 3.3~5.5V | |
0 Sản phẩm tương tự |
Hết hàng
(Đặt mua để có hàng sớm)
Min: 1
Bội số: 1
Đơn giá
44,000 đ
Thành tiền
44,000 đ
Đơn vị bán: Cái
Số lượng | Đơn giá | Thành tiền |
---|---|---|
1+ | 44,000 đ | 44,000 đ |
20+ | 43,000 đ | 860,000 đ |
50+ | 42,000 đ | 2,100,000 đ |
Số lượng | Đơn giá | Thành tiền |
1+ | 44,000 đ | 44,000 đ |
20+ | 43,000 đ | 860,000 đ |
50+ | 42,000 đ | 2,100,000 đ |
Thuộc tính | Giá trị | Tìm kiếm |
---|---|---|
Danh mục | Mạch Thời Gian Thực RTC | |
RoHS | ||
Điện áp hoạt động | 3.3~5.5V | |
0 Sản phẩm tương tự |
Thuộc tính | Giá trị | Tìm kiếm |
---|---|---|
Danh mục | Mạch Thời Gian Thực RTC | |
RoHS | ||
Điện áp hoạt động | 3.3~5.5V | |
0 Sản phẩm tương tự |
DS3231 mạch thời gian thực RTC tích hợp IC nhớ AT24C32 là mạch đồng hồ thời gian thực chính xác, tích hợp 32Kbit EEPROM và cảm biến nhiệt độ 10 bit với độ phân giải 0.25°C. Mạch giao tiếp I2C có độ chính xác cao, sử dụng dao động thạch anh (TCXO) và tích hợp pin dự phòng, giúp duy trì thời gian chính xác ngay cả khi nguồn điện chính bị ngắt.
Thông số kỹ thuật:
Lưu ý: Sản phẩm không được bảo hành. Quý khách vui lòng tham khảo Quy định bảo hành và Quy định đổi trả hàng
Sơ đồ nối dây (Ví dụ khi kết nối với Arduino UNO R3):
Địa chỉ I2C EEPROM:
#include <DS3231.h> // Init the DS3231 using the hardware interface DS3231 rtc(SDA, SCL); void setup() { // Setup Serial connection Serial.begin(115200); // Uncomment the next line if you are using an Arduino Leonardo //while (!Serial) {} // Initialize the rtc object rtc.begin(); // The following lines can be uncommented to set the date and time //rtc.setDOW(WEDNESDAY); // Set Day-of-Week to SUNDAY //rtc.setTime(12, 0, 0); // Set the time to 12:00:00 (24hr format) //rtc.setDate(1, 1, 2014); // Set the date to January 1st, 2014 } void loop() { // Send Day-of-Week Serial.print(rtc.getDOWStr()); Serial.print(" "); // Send date Serial.print(rtc.getDateStr()); Serial.print(" -- "); // Send time Serial.println(rtc.getTimeStr()); // Wait one second before repeating :) delay (1000); } // DS3231_Serial_Easy // To use the hardware I2C (TWI) interface of the Arduino you must connect // the pins as follows: // // Arduino Uno/2009: // ---------------------- // DS3231: SDA pin -> Arduino Analog 4 or the dedicated SDA pin // SCL pin -> Arduino Analog 5 or the dedicated SCL pin // // Arduino Leonardo: // ---------------------- // DS3231: SDA pin -> Arduino Digital 2 or the dedicated SDA pin // SCL pin -> Arduino Digital 3 or the dedicated SCL pin // // Arduino Mega: // ---------------------- // DS3231: SDA pin -> Arduino Digital 20 (SDA) or the dedicated SDA pin // SCL pin -> Arduino Digital 21 (SCL) or the dedicated SCL pin // // Arduino Due: // ---------------------- // DS3231: SDA pin -> Arduino Digital 20 (SDA) or the dedicated SDA1 (Digital 70) pin // SCL pin -> Arduino Digital 21 (SCL) or the dedicated SCL1 (Digital 71) pin //
DS3231 mạch thời gian thực RTC tích hợp IC nhớ AT24C32 là mạch đồng hồ thời gian thực chính xác, tích hợp 32Kbit EEPROM và cảm biến nhiệt độ 10 bit với độ phân giải 0.25°C. Mạch giao tiếp I2C có độ chính xác cao, sử dụng dao động thạch anh (TCXO) và tích hợp pin dự phòng, giúp duy trì thời gian chính xác ngay cả khi nguồn điện chính bị ngắt.
Thông số kỹ thuật:
Lưu ý: Sản phẩm không được bảo hành. Quý khách vui lòng tham khảo Quy định bảo hành và Quy định đổi trả hàng
Sơ đồ nối dây (Ví dụ khi kết nối với Arduino UNO R3):
Địa chỉ I2C EEPROM:
#include <DS3231.h> // Init the DS3231 using the hardware interface DS3231 rtc(SDA, SCL); void setup() { // Setup Serial connection Serial.begin(115200); // Uncomment the next line if you are using an Arduino Leonardo //while (!Serial) {} // Initialize the rtc object rtc.begin(); // The following lines can be uncommented to set the date and time //rtc.setDOW(WEDNESDAY); // Set Day-of-Week to SUNDAY //rtc.setTime(12, 0, 0); // Set the time to 12:00:00 (24hr format) //rtc.setDate(1, 1, 2014); // Set the date to January 1st, 2014 } void loop() { // Send Day-of-Week Serial.print(rtc.getDOWStr()); Serial.print(" "); // Send date Serial.print(rtc.getDateStr()); Serial.print(" -- "); // Send time Serial.println(rtc.getTimeStr()); // Wait one second before repeating :) delay (1000); } // DS3231_Serial_Easy // To use the hardware I2C (TWI) interface of the Arduino you must connect // the pins as follows: // // Arduino Uno/2009: // ---------------------- // DS3231: SDA pin -> Arduino Analog 4 or the dedicated SDA pin // SCL pin -> Arduino Analog 5 or the dedicated SCL pin // // Arduino Leonardo: // ---------------------- // DS3231: SDA pin -> Arduino Digital 2 or the dedicated SDA pin // SCL pin -> Arduino Digital 3 or the dedicated SCL pin // // Arduino Mega: // ---------------------- // DS3231: SDA pin -> Arduino Digital 20 (SDA) or the dedicated SDA pin // SCL pin -> Arduino Digital 21 (SCL) or the dedicated SCL pin // // Arduino Due: // ---------------------- // DS3231: SDA pin -> Arduino Digital 20 (SDA) or the dedicated SDA1 (Digital 70) pin // SCL pin -> Arduino Digital 21 (SCL) or the dedicated SCL1 (Digital 71) pin //
Chấp nhận thanh toán