Articles Posted in the " " Category

  • Encoder Library

    Encoder Library

    From the “Coding 104” and later release, the encoder library is included as part of the 86Duino IDE to provide high speed encoder interface. The 86Duino encoder interface can be configured to work in different mode to support different type of encoder, such as optical encoders and rotary. Each encoder interface has 3 signal pins, […]


  • setSS()

    setSS()

    Description Activate (pull low) or deactivate (pull high) the Slave Select (SS) pin. This function is available from 86Duino Coding 103. Syntax SPI.setSS(value) Parameters value: HIGH (pull high the SS pin) or LOW (pull low the SS pin). Returns None Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino […]



  • CapacitiveSensor Library

    CapacitiveSensor Library

    This library is available from 86Duino Coding 102 and is an 86Duino porting of Paul Badger’s CapacitiveSensor library. Overview The capacitiveSensor library turns two or more 86Duino pins into a capacitive sensor, which can sense the electrical capacitance of the human body. All the sensor setup requires is a medium to high value resistor and […]


  • OneWire Library

    OneWire Library

    This library is available from 86Duino Coding 102 and is an 86Duino porting of Paul Stoffregen’s OneWire library. The 1-Wire Protocol Dallas Semiconductor (now Maxim) produces a family of devices that are controlled through a proprietary 1-wire protocol. There are no fees for programmers using the Dallas 1-Wire (trademark) drivers. On a 1-Wire network, which […]


  • cpuTemperature()

    cpuTemperature()

    Description Read the temperature of the 86Duino’s CPU. This function is available from 86Duino Coding 102. Syntax cpuTemperature(mode) cpuTemperature() Parameters mode: DEGREE_C to read the temperature in celsius (°C), or DEGREE_F to read the temperature in fahrenheit (°F). The default is DEGREE_C. Returns the CPU temperature (double) Example Language Reference Home The text of the […]


  • FreeIMU1 Library

    FreeIMU1 Library

    This library is available from 86Duino Coding 102 and only useful for the 86Duino One. It provides the API of Fabio Varesano’s FreeIMU library to access the on-board 6-axis gyroscope and accelerometer of 86Duino One. Libraries Reference Home The text of the 86Duino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples […]


  • Time86 Library

    Time86 Library

    The Time86 library is available from 86Duino Coding 102, and provides the API of the Arduino Time library to access the on-board RTC timer. This library adds timekeeping functionality to 86Duino without external timekeeping hardware. It allows a sketch to get the time and date as: second, minute, hour, day, month and year. Functional Overview […]


  • Audio Library

    Audio Library

    This library is available from 86Duino Coding 102, and implements the API of Arduino Due’s Audio library to access the on-board HD Audio interface of 86Duino One, EduCake and PLC. Functions - begin() - prepare() - write() Hack The Audio library of 86Duino is implemented by employing the WSS library, which is a DOS audio […]