Articles Posted by the Author:

  • disableAlarm()

    disableAlarm()

    Description Disable the RTC alarm triggering. Syntax rtc.disableAlarm() Parameters none See also - begin() - enableAlarm() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.


  • enableAlarm()

    enableAlarm()

    Description Enable the RTC alarm to be triggered on a chosen match type Syntax rtc.enableAlarm(rtc.AlarmMatch) Parameters AlarmMatch: the chosen match type that can be chosen between: - MATCH_SS: generate an alarm on seconds match; - MATCH_MMSS: generate an alarm on minutes and seconds match; - MATCH_HHMMSS: generate an alarm on hours, minutes and seconds match; […]


  • setAlarmDate()

    setAlarmDate()

    Description Set the RTC Alarm day, month and year. Syntax rtc.setAlarmDate(uint8_t day, uint8_t month, uint8_t year) Parameters day: the day value to be set. month: the month value to be set. year: the year value to be set. See also - begin() - setAlarmHours() - setAlarmMinutes() - setAlarmSeconds() - setAlarmTime() - setAlarmYear() - setAlarmMonth() - […]


  • setAlarmDay()

    setAlarmDay()

    Description Set the RTC Alarm day. Syntax rtc.setAlarmDay(uint8_t day) Parameters day: the day value to be set. See also - begin() - setAlarmHours() - setAlarmMinutes() - setAlarmSeconds() - setAlarmTime() - setAlarmYear() - setAlarmMonth() - setAlarmDate() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under […]


  • setAlarmMonth()

    setAlarmMonth()

    Description Set the RTC Alarm month. Syntax rtc.setAlarmMonth(uint8_t month) Parameters month: the month value to be set. See also - begin() - setAlarmHours() - setAlarmMinutes() - setAlarmSeconds() - setAlarmTime() - setAlarmYear() - setAlarmDay() - setAlarmDate() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under […]


  • setAlarmYear()

    setAlarmYear()

    Description Set the RTC Alarm year. Syntax rtc.setAlarmYear(uint8_t year) Parameters year: the year value to be set. See also - begin() - setAlarmHours() - setAlarmMinutes() - setAlarmSeconds() - setAlarmTime() - setAlarmMonth() - setAlarmDay() - setAlarmDate() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under […]


  • setAlarmTime()

    setAlarmTime()

    Description Set the RTC Alarm hours, minutes and seconds. Syntax rtc.setAlarmTime(uint8_t hours, uint8_t minutes, uint8_t seconds) Parameters hours: the hours value to be set. minutes: the minutes value to be set. seconds: the seconds value to be set. See also - begin() - setAlarmHours() - setAlarmMinutes() - setAlarmSeconds() - setAlarmYear() - setAlarmMonth() - setAlarmDay() - […]


  • setAlarmSeconds()

    setAlarmSeconds()

    Description Set the RTC Alarm seconds value. Syntax rtc.setAlarmSeconds(uint8_t seconds) Parameters seconds: the seconds value to be set. See also - begin() - setAlarmHours() - setAlarmMinutes() - setAlarmTime() - setAlarmYear() - setAlarmMonth() - setAlarmDay() - setAlarmDate() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed […]


  • setAlarmMinutes()

    setAlarmMinutes()

    Description Set the RTC Alarm minutes value. Syntax rtc.setAlarmMinutes(uint8_t minutes) Parameters minutes: the minutes value to be set. See also - begin() - setAlarmHours() - setAlarmSeconds() - setAlarmTime() - setAlarmYear() - setAlarmMonth() - setAlarmDay() - setAlarmDate() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed […]


  • setAlarmHours()

    setAlarmHours()

    Description Set the RTC Alarm hours value. Syntax rtc.setAlarmHours(uint8_t hours) Parameters hours: the hours value to be set. See also - begin() - setAlarmMinutes() - setAlarmSeconds() - setAlarmTime() - setAlarmYear() - setAlarmMonth() - setAlarmDay() - setAlarmDate() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed […]