nl.tue.id.creapro.arduino
Interface ArduinoConstants

All Known Implementing Classes:
Arduino

public interface ArduinoConstants


Field Summary
static int HIGH
          Constant to write a high value (+5 volts) to a pin (in a call to digitalWrite()).
static int INPUT
          Constant to set a pin to input mode (in a call to pinMode()).
static int LOW
          Constant to write a low value (0 volts) to a pin (in a call to digitalWrite()).
static int OUTPUT
          Constant to set a pin to output mode (in a call to pinMode()).
 

Field Detail

HIGH

static final int HIGH
Constant to write a high value (+5 volts) to a pin (in a call to digitalWrite()).

See Also:
Constant Field Values

INPUT

static final int INPUT
Constant to set a pin to input mode (in a call to pinMode()).

See Also:
Constant Field Values

LOW

static final int LOW
Constant to write a low value (0 volts) to a pin (in a call to digitalWrite()).

See Also:
Constant Field Values

OUTPUT

static final int OUTPUT
Constant to set a pin to output mode (in a call to pinMode()).

See Also:
Constant Field Values