upm
0.2.0
Sensor/Actuator repository for libmraa (v0.6.1)
|
C++ API for the DS1307 Real Time CLock. More...
UPM module for the DS1307 based RTC. The clock can provide information about the seconds, minutes, hours, day of the week, day of the month, month, and year. It can operate in either 24-hour or 12-hour format. This device can also output a square wave at 1Khz, 4Khz, 8Khz, and 32Khz. However, this capability is not implemented in this module.
Public Member Functions | |
DS1307 (int bus) | |
~DS1307 () | |
bool | loadTime () |
bool | setTime () |
mraa_result_t | enableClock () |
mraa_result_t | disableClock () |
mraa_result_t | writeBytes (uint8_t reg, uint8_t *buffer, unsigned int len) |
uint8_t | readBytes (uint8_t reg, uint8_t *buffer, unsigned int len) |
unsigned int | bcdToDec (uint8_t val) |
uint8_t | decToBcd (unsigned int val) |
Data Fields | |
unsigned int | seconds |
unsigned int | minutes |
unsigned int | hours |
unsigned int | dayOfWeek |
unsigned int | dayOfMonth |
unsigned int | month |
unsigned int | year |
bool | amPmMode |
bool | pm |
DS1307 | ( | int | bus | ) |
ds1307 Real Time Clock constructor
bus | i2c bus to use |
bool loadTime | ( | ) |
Load all of the time values
bool setTime | ( | ) |
Set the time. You should call loadTime() beforehand to maintain consistency
mraa_result_t enableClock | ( | ) |
Enable the oscillator on the clock.
mraa_result_t disableClock | ( | ) |
Disable the oscillator on the clock. This will prevent the clock from updating any time/date values
mraa_result_t writeBytes | ( | uint8_t | reg, |
uint8_t * | buffer, | ||
unsigned int | len | ||
) |
Write value(s) into registers
reg | register location to start writing into |
buffer | buffer for data storage |
len | number of bytes to write |
uint8_t readBytes | ( | uint8_t | reg, |
uint8_t * | buffer, | ||
unsigned int | len | ||
) |
Read value(s) from registers
reg | register location to start reading from |
buffer | buffer for data storage |
len | number of bytes to read |
unsigned int bcdToDec | ( | uint8_t | val | ) |
Convert a BCD value into decimal
val | BCD value to convert |
uint8_t decToBcd | ( | unsigned int | val | ) |
Convert a decimal value into BCD
val | decimal value to convert |
unsigned int seconds |
holds the seconds
unsigned int minutes |
holds the minutes
unsigned int hours |
holds the hours, 1-12 in am/pm mode, 0-23 otherwise
unsigned int dayOfWeek |
holds the day of the week, 1-7 where 1 is Sunday
unsigned int dayOfMonth |
holds the day of the month, 1-31
unsigned int month |
holds the month, 1-12
unsigned int year |
holds the year, 0-99
bool amPmMode |
True if in AM/PM mode, false if 24h format.
bool pm |
If in AmPmMode (12-hr), then this is true if it's PM, clear if AM