Articles Posted by the Author:



  • Usage of 86IO

    Usage of 86IO

    Describe 86IO is a built-in tool program in L86duntu, which is used to set the output status of the 86Duino digital I/O pin or read the input status of the digital I/O pin. The implementation method is to directly call  digitalRead()  and  digitalWrite() in the 86Duino API, and the original code is placed in the /home/dmp/86Duino_Tools/src/86io directory, […]


  • Usage of 86ADC

    Usage of 86ADC

    Describe 86ADC is a built-in tool program for L86duntu, which is used to read the voltage value detected by the A/D pin on the 86Duino board. The implementation method is to directly call analogRead() in the 86Duino API, and its original code is placed in the /home/dmp/86Duino_Tools/src/86adc directory, and users can refer to or modify it themselves.  […]


  • 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 […]