Description Get the RTC hours value. Syntax rtc.getHours() Return the hours value. See also - begin() - getMinutes() - getSeconds() - getYear() - getMonth() - getDay() 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 […]
Description Set the RTC day, month and year. Syntax rtc.setDate(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() - setHours() - setMinutes() - setSeconds() - setTime() - setYear() - setMonth() - setDay() […]
Description Set the RTC day. Syntax rtc.setDay(uint8_t day) Parameters day: the day value to be set. See also - begin() - setHours() - setMinutes() - setSeconds() - setTime() - setYear() - setMonth() - setDate() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a […]
Description Set the RTC month. Syntax rtc.setMonth(uint8_t month) Parameters month: the month value to be set. See also - begin() - setHours() - setMinutes() - setSeconds() - setTime() - setYear() - setDay() - setDate() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a […]
Description Set the RTC year. Syntax rtc.setYear(uint8_t year) Parameters year: the year value to be set. See also - begin() - setHours() - setMinutes() - setSeconds() - setTime() - setMonth() - setDay() - setDate() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a […]
Description Set the RTC hours, minutes and seconds. Syntax rtc.setTime(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() - setHours() - setMinutes() - setSeconds() - setYear() - setMonth() - setDay() - setDate() […]
Description Set the RTC seconds value. Syntax rtc.setseconds(uint8_t seconds) Parameters seconds: the seconds value to be set. See also - begin() - setHours() - setMinutes() - setTime() - setYear() - setMonth() - setDay() - setDate() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under […]
Description Set the RTC minutes value. Syntax rtc.setMinutes(uint8_t minutes) Parameters minutes: the minutes value to be set. See also - begin() - setHours() - setSeconds() - setTime() - setYear() - setMonth() - setDay() - setDate() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under […]
Description Set the RTC hours value. Syntax rtc.setHours(uint8_t hours) Parameters hours: the hours value to be set. See also - begin() - setMinutes() - setSeconds() - setTime() - setYear() - setMonth() - setDay() - setDate() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under […]
Description Initializes the internal RTC. begin() needs to be called before any other RTCZero library methods. Syntax rtc.begin() Parameters none 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 […]