Увеличить
12 человек уже купили 17 шт.
Модуль часы реального времени PCF8563
ВВЕДЕНИЕ
Модуль часы реального времени на схеме PCF8563.
ПАРАМЕТРЫ
- Широкий диапазон напряжения: 1,0 ~ 5.5V
- Низкая потребляемая мощность: тип 0.25uA
- Выходная тактовая частота составляет: 32.768KHz, 1024Hz, 32 Гц, 1 Гц.
ПРИМЕР КОДА
#include <Wire.h>
#include <Rtc_Pcf8563.h>
//init the real time clock
Rtc_Pcf8563 rtc;
void setup()
{
//clear out the registers
rtc.initClock();
//set a time to start with.
//day, weekday, month, century(1=1900, 0=2000), year(0-99)
rtc.setDate(14, 6, 3, 1, 10);
//hr, min, sec
rtc.setTime(1, 15, 0);
}
void loop()
{
//both format functions call the internal getTime() so that the
//formatted strings are at the current time/date.
Serial.print(rtc.formatTime());
Serial.print("\r\n");
Serial.print(rtc.formatDate());
Serial.print("\r\n");
delay(1000);
}
КОМПЛЕКТ
- Модуль часы реального времени DS1307 х1