Articles Posted in the " " Category

  • begin()

    begin()

    Description Tells the server to begin listening for incoming connections. Syntax server.begin() Parameters None Returns None Example 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.


  • EthernetServer()

    EthernetServer()

    Description Create a server that listens for incoming connections on the specified port. Syntax EthernetServer(port); Parameters port: the port to listen on (int) Returns None Example 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 […]


  • Server

    Server

    Description Server is the base class for all Ethernet server based calls. It is not called directly, but invoked whenever you use a function that relies on it. Functions - EthernetServer() - begin() - available() - write() - print() - println() Libraries Reference Home The text of the 86Duino reference is a modification of the […]


  • IPAddress()

    IPAddress()

    Description Defines an IP address. It can be used to declare both local and remote addresses. Syntax IPAddress(address); Parameters address: a comma delimited list representing the address (4 bytes, ex. 192, 168, 1, 1) Returns None Example Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is […]


  • Ethernet.maintain()

    Ethernet.maintain()

    Description This function is unused for 86Duino, and is reserved here just for the purpose of compatibility to Arduino’s Ethernet library. Syntax Ethernet.maintain(); Parameters none Returns byte (always 0) 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. […]


  • Ethernet.localIP()

    Ethernet.localIP()

    Description Obtains the IP address of the 86Duino. Useful when the address is auto assigned through DHCP. Syntax Ethernet.localIP(); Parameters none Returns the IP address Example 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 […]


  • Ethernet.begin()

    Ethernet.begin()

    Description Initializes the Ethernet library and network settings. This library supports also DHCP. Using Ethernet.begin(mac) or Ethernet.begin() with the proper network setup, the Ethernet shield will automatically obtain an IP address. Syntax Ethernet.begin(); Ethernet.begin(mac); Ethernet.begin(mac, ip); Ethernet.begin(mac, ip, dns); Ethernet.begin(mac, ip, dns, gateway); Ethernet.begin(mac, ip, dns, gateway, subnet); Parameters mac: an array of 6 bytes […]


  • write()

    write()

    Description Write a byte to the EEPROM. Syntax EEPROM.write(address, value) Parameters address: the location to write to, starting from 0 (int) value: the value to write, from 0 to 255 (byte) Returns none Note If you use the 16 KB bank of virtual EEPROM, a write will take longer time (200~250us on the average) to […]


  • read()

    read()

    Description Reads a byte from the EEPROM. Syntax EEPROM.read(address) Parameters address: the location to read from, starting from 0 (int) Returns the value stored in that location (byte) Example See also - EEPROM.write() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative […]


  • Getting Started with 86Duino on Windows

    Getting Started with 86Duino on Windows

    This document explains how to connect your 86Duino board to the computer and upload your first sketch. 1) Get an 86Duino board and USB cable In this tutorial, we assume you’re using an 86Duino Zero, 86Duino One, or 86Duino EduCake. You also need a standard USB cable (MicroUSB to USB): the kind you would connect […]