Articles Posted in the " " Category

  • RTCZero Library

    RTCZero Library

    The RTCZero library is available from 86Duino Coding 212, and provides the API of Arduino Zero’s RTC library to control and use the on-board RTC (Real Time Clock). A real-time clock is a clock that keeps track of the current time and that can be used in order to program actions at a certain time. […]


  • Character Analysis

    Character Analysis

    isAlphaNumeric(thisChar) Description Analyse if a char is alphanumeric (a-z or A-Z or 0-9). Parameters thisChar: the char to be analysed. Returns True or false. isAlpha(thisChar) Description Analyse if a char is is alpha (a-z or A-Z). Parameters thisChar: the char to be analysed Returns True or false. isAscii(thisChar) Description Analyse if a char is ASCII. […]






  • L86duntu Release Note

    L86duntu Release Note

    V1.1 – 2016.2.25 Kernel version is updated to 3.4.6. Add mraa (0.9.0), upm (0.5.0) libraries and update CMake tool chains (2.8.11). Add video stream function. Add 86Duino_Tools directory in home/dmp, provide the useful tools. Add Servo86 library in 86Duino Linux SDK. Add a Make.SO file in every library (include cores) to build .so dynamic library. […]


  • Error writing file: 5 access denied

    Error writing file: 5 access denied

    I am trying to write 86duino.img to an sd card, and I keep getting the error using dd-0.5 after following the instructions on this site. Can anyone help? I have tried different SD cards with no luck. My system is Windows 8.1.


  • stop()

    stop()

    Description Stops the watch dog timer. This function also turns off the ISR attached by the attachInterrupt(). Syntax TimerWDT.stop() Parameter None Retun None See also - initialize() - attachInterrupt() - detachInterrupt() Libraries Reference Home The text of the 86Duino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are […]


  • isResetByWDT()

    isResetByWDT()

    Description Decide if the system has ever been rebooted by the watchdog timer. Syntax TimerWDT.isResetByWDT() Parameter None Return This function will return the boolean value below: true:System reboot by watch dog timer false:System shut down normally, did not reboot by watch dog timer Example See also - reset() Libraries Reference Home The text of the […]