Arduino Playground is read-only starting December 31st, 2018. For more info please look at this Forum Post

IeeFlip

IeeFlip()

Description

Creates a variable of type IeeFlip used to control the display. The display can be controlled using 9, 10, 11 or 12 pins.

Syntax

IeeFlip(cs, wr, rd, a0, d0, d1, d2, d3, d4, d5, d6, d7);

Parameters

cs: the number of the Arduino digital pin that is connected to the /CS pin on the display.

wr: the number of the Arduino digital pin that is connected to the /WR pin on the display.

rd: the number of the Arduino digital pin that is connected to the /RD pin on the display. This can be set to IeeFlip::DO_NOT_USE_PIN in which case the connection on the display should be left unconnected.

a0: the number of the Arduino digital pin that is connected to the A0 pin on the display. This can be set to IeeFlip::DO_NOT_USE_PIN in which case the connection on the display should tied directly to ground.

d0-d7: the numbers of the Arduino digital pins that connected to the corresponding data pins on the display. d7 can also be set to Ncr4X20Vfd::DO_NOT_USE_PIN, in which case the Data 7 pin on the display can be tied to ground with a 10k resistor.

Example

See Hello World example.

See Also

IeeFlip Home