Articles Posted in the " " Category

  • EthernetUDP.begin()

    EthernetUDP.begin()

    Description Initializes the ethernet UDP library and network settings. Syntax Udp.begin(localPort); Parameters localPort: the local 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 the reference are […]


  • stop()

    stop()

    Description Disconnect from the server. Syntax client.stop() Parameters none Returns none 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.


  • flush()

    flush()

    Description Discard any bytes that have been written to the client but not yet read. flush() inherits from the Stream utility class. Syntax client.flush() Parameters none Returns none See also - Stream.flush() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons […]


  • read()

    read()

    Description Read the next byte received from the server the client is connected to (after the last call to read()). read() inherits from the Stream utility class. Syntax client.read() Parameters none Returns The next byte (or character), or -1 if none is available. See Also - Stream.read() Libraries Reference Home The text of the 86Duino […]


  • available()

    available()

    Description Returns the number of bytes available for reading (that is, the amount of data that has been written to the client by the server it is connected to). available() inherits from the Stream utility class. Syntax client.available() Parameters none Returns The number of bytes available. Example Libraries Reference Home The text of the 86Duino […]


  • println()

    println()

    Description Print data, followed by a carriage return and newline, to the server a client is connected to. Prints numbers as a sequence of digits, each an ASCII character (e.g. the number 123 is sent as the three characters ‘1’, ‘2’, ‘3’). Syntax client.println() client.println(data) client.print(data, BASE) Parameters data (optional): the data to print (char, […]


  • print()

    print()

    Description Print data to the server that a client is connected to. Prints numbers as a sequence of digits, each an ASCII character (e.g. the number 123 is sent as the three characters ‘1’, ‘2’, ‘3’). Syntax client.print(data) client.print(data, BASE) Parameters data: the data to print (char, byte, int, long, or string) BASE (optional): the […]


  • write()

    write()

    Description Write data to the server the client is connected to. This data is sent as a byte or series of bytes. Syntax client.write(val) client.write(buf, len) Parameters val: a value to send as a single byte (byte or char) buf: an array to send as a series of bytes (byte or char) len: the length […]


  • Installing the 86Duino under Windows 7

    Installing the 86Duino under Windows 7

    This is a guide to getting the 86Duino working under Windows 7 after the operating system has tried but failed to install the drivers. For more information, see: Getting Started w/ 86Duino on Windows. (Back to Getting Started w/ 86Duino on Windows page) Getting-Started Home The text of the 86Duino reference is licensed under a […]


  • Installing Additional 86Duino Libraries

    Installing Additional 86Duino Libraries

    Installing Additional 86Duino Libraries Once you are comfortable with the 86Duino software and using the built-in functions, you may want to extend the ability of your 86Duino with additional libraries. What are Libraries? Libraries are a collection of code that makes it easy for you to connect to a sensor, display, module, etc. For example, […]