Articles Posted by the Author:


  • Mini PCIe VGA Card

    Mini PCIe VGA Card

    Dedicated for 86Duino One Specifications ● Controller : Vortex86VGA ● Maximum Display Resolution : 1024×768@60Hz ● Video Memory: 4MB SRAM Caution : Required 86Duino SysImage 20141013 version or later, older version will not support. Vortex86 mini PCI-E VGA card on 86Duino One Vortex86VGA Datasheet Circuits Schematics for Mini-PCIe VGA Card Arduino is a registered trademark of […]


  • Vortex86EX SOM-128-EX

    86Duino Vortex86EX SOM-128-EX Feature ● Vortex86EX- 300MHz ● Onboard 128MB Industrial-Grade DDR ● Onboard 8MB SPI Flash Disk ● Ethernet MAC + PHY ● SATA Interface ● PCI-E Control Interface ● PCI-E Target Interface ● ADC Channel x 8 ● USB 2.0 Port ● DMA Controller ● Interrupt Controller ● MTBF Counter ● xISA Bus […]


  • Vortex86EXm SOC-32-EXm

    Vortex86EXm SOC-32-EXm

    86Duino Vortex86EXm SOC-32-EXm ● Vortex86EXm Processor ● Open-Source Hardware ● Support DOS, Windows, Linux Arduino is a registered trademark of the Arduino Team 86Duino preload program is free software: it under the terms of the GNU General Public License and GNU Lesser General Public License. See <http://www.gnu.org/licenses/>


  • Release Note

    Release Note

    86Duino Coding 318– 2019.09.11 IDE re-ported to Arduino 1.8.9, supporting all functions of Arduino 1.8.9 Added Modbus library, supports Modbus ASCII, Modbus RTU, Modbus TCP protocol, supports Modbus Master / Slave and Gateway functions. Added Motion86 library, supports various motion control functions, up to 9-axis pulse wave output (86Duino One), can control 3 XYZ three-axis […]


  • unsigned long

    unsigned long

    unsigned long Description Unsigned long variables are extended size variables for number storage, and store 32 bits (4 bytes). Unlike standard longs unsigned longs wont store negative numbers, making their range from 0 to 4,294,967,295 (2^32 1). Example unsigned long time; void setup() { Serial.begin(9600); } void loop() { Serial.print("Time: "); time = millis(); //prints […]


  • Stream

    Stream

      Stream Stream is the base class for character and binary based streams. It is not called directly, but invoked whenever you use a function that relies on it. Stream defines the reading functions in Arduino. When using any core functionality that uses a read() or similar method, you can safely assume it calls on […]


  • Serial

    Serial

      Serial Used for communication between the Arduino board and a computer or other devices. All Arduino boards have at least one serial port (also known as a UART or USART): Serial. It communicates on digital pins 0 (RX) and 1 (TX) as well as with the computer via USB. Thus, if you use these […]


  • noInterrupts()

    noInterrupts()

      noInterrupts() Description Disables interrupts (you can re-enable them with interrupts()). Interrupts allow certain important tasks to happen in the background and are enabled by default. Some functions will not work while interrupts are disabled, and incoming communication may be ignored. Interrupts can slightly disrupt the timing of code, however, and may be disabled for […]


  • interrupts()

    interrupts()

      interrupts() Description Re-enables interrupts (after theyve been disabled by noInterrupts()). Interrupts allow certain important tasks to happen in the background and are enabled by default. Some functions will not work while interrupts are disabled, and incoming communication may be ignored. Interrupts can slightly disrupt the timing of code, however, and may be disabled for […]