Articles Posted in the " " Category

  • Ethernet.localMAC()

    Ethernet.localMAC()

    Description Obtains the MAC (Media access control) address of the 86Duino. This function is available from 86Duino Coding 102. Syntax Ethernet.localMAC(); Parameters none Returns an array of 6 bytes that contains the MAC address of the 86Duino Example Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and […]


  • noFill()

    noFill()

    Description After calling this, any shapes drawn on screen will not be filled in. Syntax screen.noFill(); Parameters none Returns none Example See also - TFT() - fill() - stroke() - background() 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 […]


  • fill()

    fill()

    Description Called before drawing an object on screen, it sets the fill color of shapes and text. fill() expects 8-bit values for each of the red, green, and blue channels, but the screen does not display with this fidelity. The red and blue values are scaled to 5-bit color (32 discrete steps), and the green […]


  • noStroke()

    noStroke()

    Description After calling this, any shapes drawn on screen will not have an outline stroke color. Syntax screen.noStroke(); Parameters none Returns none Example See also - TFT - fill() - noFill() - stroke() - background() Libraries Reference Home The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under […]


  • stroke()

    stroke()

    Description Called before drawing an object on screen, it sets the color of lines and borders around shapes. stroke() expects 8-bit values for each of the red, green, and blue channels, but the screen does not display with this fidelity. The red and blue values are scaled to 5-bit color (32 discrete steps), and the […]


  • background()

    background()

    Description Erases everything currently on the LCD screen with the indicated color. Can be used in loop() to clear the screen. While background() expects 8-bit values for each of the red, green, and blue channels, the screen does not display with this fidelity. The red and blue values are scaled to 5-bit color (32 discrete […]


  • transfer()

    transfer()

    Description Transfers one byte over the SPI bus, both sending and receiving. Syntax SPI.transfer(val) Parameters val: the byte to send out over the bus. Returns the byte read from the bus. 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 […]


  • setDataMode()

    setDataMode()

    Description Sets the SPI data mode: that is, clock polarity and phase. See the Wikipedia article on SPI for details. Syntax SPI.setDataMode(mode) Parameters mode: SPI_MODE0, SPI_MODE1, SPI_MODE2, or SPI_MODE3. mode Clock Polarity (CPOL) Clock Phase (CPHA) SPI_MODE0 0 0 SPI_MODE1 0 1 SPI_MODE2 1 0 SPI_MODE3 1 1 Returns None See also - setBitOrder() - […]


  • setClockDivider()

    setClockDivider()

    Description Sets the divider of the SPI clock. On 86Duino, the SPI clock is equal to 100/(2*divider) MHz. The dividers available are integer values from 1 to 4095. On 86Duino Coding 102 and before, the default divider setting is 800, which sets the SPI clock to 62.5KHz; and from Coding 103, the default setting is […]