Articles Posted by the Author:





  • Sleep RTC Alarm

    Sleep RTC Alarm

    Description This example demonstrate how to use the RTC library methods in order to wake up from the standby mode a 86Duino. Hardware Required - 86Duino Zero/One/EduCake/PLC Code 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 […]


  • Simple RTC Alarm

    Simple RTC Alarm

    Description This example demonstrate how to use the RTC library methods in order to do something when an alarm is matched. In particular in this example, the RTC time is set at 16:00:00 and an alarm at 16:00:10. When the time match using the match type MATCH_HHMMSS is reached, the attached interrupt function will print […]


  • Simple RTC

    Simple RTC

    Description This example demonstrate how to use the RTC library methods. Hardware Required - 86Duino Zero/One/EduCake/PLC Code 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.


  • standbyMode()

    standbyMode()

    Description Send the board in standby mode. Syntax rtc.standbyMode() Parameters None See also - begin() 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.


  • detachInterrupt()

    detachInterrupt()

    Description Detach interrupt action on alarm match. Syntax rtc.detachInterrupt() Parameters none See also - begin() - attachInterrupt() 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.


  • attachInterrupt()

    attachInterrupt()

    Description Attach an interrupt action on alarm match. Syntax rtc.attachInterrupt(callback) Parameters callback: The name of the function to be called on alarm match Example See also - begin() - detachInterrupt() 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 […]