Adafruit s PCF8523 RTC Library Documentation

Similar documents
Adafruit s DS3231 RTC Library Documentation

Adafruit PCF8523 Real Time Clock

Adafruit DS3231 Precision RTC Breakout

Adafruit SI7021 Library Documentation

Adafruit APDS9960 breakout

Adafruit VL53L0X Time of Flight Micro-LIDAR Distance Sensor Breakout

Adafruit MCP9808 Precision I2C Temperature Sensor Guide

Adafruit DRV2605 Haptic Controller Breakout

TSL2561 Luminosity Sensor

Adafruit Color Sensors

Adafruit AS channel Visible Light Sensor

Adafruit BME680 Library Documentation

Adafruit AM2320 Sensor

Adafruit MMA8451 Accelerometer Breakout

Adafruit Si7021 Temperature + Humidity Sensor

Joy Featherwing. Created by Dean Miller. Last updated on :03:07 PM UTC

Adafruit SGP30 TVOC/eCO2 Gas Sensor

MCP Bit DAC Tutorial

Adafruit CCS811 Air Quality Sensor

IS31FL x9 Charlieplexed PWM LED Driver

Adafruit MMA8451 Accelerometer Breakout

Adafruit GPIO Expander Bonnet for Raspberry Pi Created by Kattni Rembor. Last updated on :12:47 PM UTC

Adafruit MPRLS Ported Pressure Sensor Breakout

Adafruit 7-Segment LED FeatherWings

Adafruit IO Basics: Servo

Monochrome OLED Breakouts

Adafruit 8x16 LED Matrix FeatherWing

MLX90393 Wide-Range 3-Axis Magnetometer

Adafruit AMG8833 8x8 Thermal Camera Sensor

Adafruit TSL2591 High Dynamic Range Digital Light Sensor

Adafruit Mini TFT with Joystick Featherwing

NeoMatrix 8x8 Word Clock

Adafruit MMA8451 Accelerometer Breakout

Adafruit MAX31865 RTD PT100 or PT1000 Amplifier

14-Segment Alpha-numeric LED FeatherWing

Adafruit eink Display Breakouts

Adafruit I2C FRAM Breakout

Large Pi-based Thermometer and Clock

Adafruit TPL5111 Reset Enable Timer Breakout

MCP Bit DAC Tutorial

Adafruit Mini TFT " 160x80

i2c/spi LCD Backpack Created by lady ada Last updated on :11:04 PM UTC

Adafruit Si5351 Clock Generator Breakout

Adafruit TPL5110 Power Timer Breakout

Android GBoard Morse Code Control with Circuit Playground Express

Adafruit 2.4" TFT FeatherWing

Adafruit LIS3DH Triple-Axis Accelerometer Breakout

Adafruit HUZZAH32 - ESP32 Feather

Adafruit DRV2605 Haptic Controller Breakout

Adafruit Capacitive Touch Sensor Breakouts

Data Logging with Feather and CircuitPython

Adafruit LED Backpacks

Adafruit Feather 32u4 Basic Proto

Adafruit 8x16 LED Matrix FeatherWing

Adafruit Stepper + DC Motor FeatherWing

Adafruit IO Basics: Digital Input

Adafruit IO Basics: Analog Input

Adafruit ATWINC1500 WiFi Breakout

Adafruit WINC1500 WiFi Shield for Arduino

Adafruit LED Sequins. Created by Becky Stern. Last updated on :02:00 AM UTC

Adafruit LED Backpacks

Adafruit 10-DOF IMU Breakout

Adafruit 3.5" 480x320 TFT FeatherWing

Introducing Adafruit Trellis

Adafruit Feather 32u4 Adalogger

Adafruit 3.5" 480x320 TFT FeatherWing

Adafruit ATWINC1500 WiFi Breakout

Adafruit IO Basics: ESP Arduino

1.8" TFT Display Breakout and Shield

Using IFTTT with Adafruit IO to Make an IoT Door Detector

CircuitPlayground Minecraft Gesture Controller

0.96" mini Color OLED

Flora Wearable GPS. Created by Becky Stern. Last updated on :32:36 PM UTC

Adafruit IO Basics: Temperature & Humidity

Adafruit 9-DOF IMU Breakout

Sino:bit with Arduino

Adafruit IO Basics: Digital Output

Grove - LED Bar. Introduction. Features

OpenSesame EyeLink tutorial

RGB LCD Shield. Created by lady ada. Last updated on :48:40 PM UTC

Toy Car Speed Timer. Created by Kirby Griese. Last updated on :13:49 PM UTC

Adafruit 1.27" and 1.5" Color OLED Breakout Board

Circuit Playground Express Laser Tag

Adafruit IO Basics: Color

Adafruit ATWINC1500 WiFi Breakout

Adafruit Flora Bluefruit LE

Bluefruit LE Connect for ios

Adabot Operation Game

Grove - 4-Digit Display

Steam Heat Retrofit for Coover Hall

Interior Purse Light. Created by Becky Stern. Last updated on :41:08 PM UTC

Clare Video Doorbell Version 2 User Manual

Mystery Box: Haunted Radio

PyPortal NeoPixel Color Picker Created by Kattni Rembor. Last updated on :42:41 PM UTC

Introducing Circuit Playground

Micro:bit with Arduino

Getting Started with FLORA

Sino:bit with Arduino

Coffee Detonator: The TNT Plunger Grinder

Adafruit GPS Hat in Windows IoT Core

Transcription:

Adafruit s PCF8523 RTC Library Documentation Release 1.0 Philip Moyer Feb 02, 2018

Contents 1 Dependencies 3 2 Usage Notes 5 2.1 Basics................................................... 5 2.2 Date and time............................................... 5 2.3 Alarm................................................... 6 3 Table of Contents 7 3.1 Demo................................................... 7 3.2 adafruit_pcf8523 - PCF8523 Real Time Clock module..................... 8 3.2.1 Implementation Notes..................................... 8 4 Indices and tables 11 Python Module Index 13 i

ii

Adafruit s PCF8523 RTC Library Documentation, Release 1.0 This is a great battery-backed real time clock (RTC) that allows your microcontroller project to keep track of time even if it is reprogrammed, or if the power is lost. Perfect for datalogging, clock-building, time stamping, timers and alarms, etc. Equipped with PCF8523 RTC - it can run from 3.3V or 5V power & logic! The PCF8523 is simple and inexpensive but not a high precision device. It may lose or gain up to two seconds a day. For a high-precision, temperature compensated alternative, please check out the DS3231 precision RTC. If you need a DS1307 for compatibility reasons, check out our DS1307 RTC breakout. Contents 1

Adafruit s PCF8523 RTC Library Documentation, Release 1.0 2 Contents

CHAPTER 1 Dependencies This driver depends on the Register and Bus Device libraries. Please ensure they are also available on the CircuitPython filesystem. This is easily achieved by downloading a library and driver bundle. 3

Adafruit s PCF8523 RTC Library Documentation, Release 1.0 4 Chapter 1. Dependencies

CHAPTER 2 Usage Notes 2.1 Basics Of course, you must import the library to use it: import busio import adafruit_pcf8523 import time All the Adafruit RTC libraries take an instantiated and active I2C object (from the busio library) as an argument to their constructor. The way to create an I2C object depends on the board you are using. For boards with labeled SCL and SDA pins, you can: from board import * You can also use pins defined by the onboard microcontroller through the microcontroller.pin module. Now, to initialize the I2C bus: i2c_bus = busio.i2c(scl, SDA) Once you have created the I2C interface object, you can use it to instantiate the RTC object: rtc = adafruit_pcf8523.pcf8523(i2c_bus) 2.2 Date and time To set the time, you need to set datetime to a time.struct_time object: rtc.datetime = time.struct_time((2017,1,9,15,6,0,0,9,-1)) 5

Adafruit s PCF8523 RTC Library Documentation, Release 1.0 After the RTC is set, you retrieve the time by reading the datetime attribute and access the standard attributes of a struct_time such as tm_year, tm_hour and tm_min. t = rtc.datetime print(t) print(t.tm_hour, t.tm_min) 2.3 Alarm To set the time, you need to set alarm to a tuple with a time.struct_time object and string representing the frequency such as hourly : rtc.alarm = (time.struct_time((2017,1,9,15,6,0,0,9,-1)), "daily") After the RTC is set, you retrieve the alarm status by reading the alarm_status attribute. Once True, set it back to False to reset. if rtc.alarm_status: print("wake up!") rtc.alarm_status = False 6 Chapter 2. Usage Notes

CHAPTER 3 Table of Contents 3.1 Demo Listing 3.1: examples/demo.py 1 # Simple demo of reading and writing the time for the PCF8523 real-time clock. 2 # Change the if False to if True below to set the time, otherwise it will just 3 # print the current date and time every second. Notice also comments to adjust 4 # for working with hardware vs. software I2C. 5 6 import time 7 import board 8 # For hardware I2C (M0 boards) use this line: 9 import busio as io 10 # Or for software I2C (ESP8266) use this line instead: 11 #import bitbangio as io 12 13 import adafruit_pcf8523 14 15 # Change to the appropriate I2C clock & data pins here! 16 i2c_bus = io.i2c(board.scl, board.sda) 17 18 # Create the RTC instance: 19 rtc = adafruit_pcf8523.pcf8523(i2c_bus) 20 21 # Lookup table for names of days (nicer printing). 22 days = ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday") 23 24 25 #pylint: disable-msg=bad-whitespace 26 #pylint: disable-msg=using-constant-test 27 if False: # change to True if you want to set the time! 28 # year, mon, date, hour, min, sec, wday, yday, isdst 29 t = time.struct_time((2017, 10, 29, 10, 31, 0, 0, -1, -1)) 30 # you must set year, mon, date, hour, min, sec and weekday 7

Adafruit s PCF8523 RTC Library Documentation, Release 1.0 31 # yearday is not supported, isdst can be set but we don't do anything with it at this time 32 print("setting time to:", t) # uncomment for debugging 33 rtc.datetime = t 34 print() 35 #pylint: enable-msg=using-constant-test 36 #pylint: enable-msg=bad-whitespace 37 38 # Main loop: 39 while True: 40 t = rtc.datetime 41 #print(t) # uncomment for debugging 42 print("the date is {} {}/{}/{}".format(days[int(t.tm_wday)], t.tm_mday, t.tm_mon, t.tm_year)) 43 print("the time is {}:{:02}:{:02}".format(t.tm_hour, t.tm_min, t.tm_sec)) 44 time.sleep(1) # wait a second 3.2 adafruit_pcf8523 - PCF8523 Real Time Clock module This library supports the use of the PCF8523-based RTC in CircuitPython. It contains a base RTC class used by all Adafruit RTC libraries. This base class is inherited by the chip-specific subclasses. Functions are included for reading and writing registers and manipulating datetime objects. Author(s): Philip R. Moyer and Radomir Dopieralski for Adafruit Industries. Date: November 2016 Affiliation: Adafruit Industries 3.2.1 Implementation Notes Hardware: Adafruit Adalogger FeatherWing - RTC + SD Add-on (Product ID: 2922) Adafruit PCF8523 RTC breakout (Product ID: 3295) Software and Dependencies: Notes: Adafruit CircuitPython firmware: https://github.com/adafruit/circuitpython/releases Adafruit s Register library: https://github.com/adafruit/adafruit_circuitpython_register Adafruit s Bus Device library: https://github.com/adafruit/adafruit_circuitpython_busdevice 1. Milliseconds are not supported by this RTC. 2. Datasheet: http://cache.nxp.com/documents/data_sheet/pcf8523.pdf class adafruit_pcf8523.pcf8523(i2c_bus) Interface to the PCF8523 RTC. alarm Alarm time for the first alarm. alarm_interrupt True if the interrupt pin will output when alarm is alarming. 8 Chapter 3. Table of Contents

Adafruit s PCF8523 RTC Library Documentation, Release 1.0 alarm_status True if alarm is alarming. Set to False to reset. battery_low True if the battery is low and should be replaced. datetime Gets the current date and time or sets the current date and time then starts the clock. datetime_register Current date and time. lost_power True if the device has lost power since the time was set. power_management Power management state that dictates battery switchover, power sources and low battery detection. Defaults to BATTERY_SWITCHOVER_OFF (0b000). 3.2. adafruit_pcf8523 - PCF8523 Real Time Clock module 9

Adafruit s PCF8523 RTC Library Documentation, Release 1.0 10 Chapter 3. Table of Contents

CHAPTER 4 Indices and tables genindex modindex search 11

Adafruit s PCF8523 RTC Library Documentation, Release 1.0 12 Chapter 4. Indices and tables

Python Module Index a adafruit_pcf8523, 8 13

Adafruit s PCF8523 RTC Library Documentation, Release 1.0 14 Python Module Index

Index A adafruit_pcf8523 (module), 8 alarm (adafruit_pcf8523.pcf8523 attribute), 8 alarm_interrupt (adafruit_pcf8523.pcf8523 attribute), 8 alarm_status (adafruit_pcf8523.pcf8523 attribute), 8 B battery_low (adafruit_pcf8523.pcf8523 attribute), 9 D datetime (adafruit_pcf8523.pcf8523 attribute), 9 datetime_register (adafruit_pcf8523.pcf8523 attribute), 9 L lost_power (adafruit_pcf8523.pcf8523 attribute), 9 P PCF8523 (class in adafruit_pcf8523), 8 power_management (adafruit_pcf8523.pcf8523 attribute), 9 15