org.firmata
Interface Firmata.Writer

All Known Implementing Classes:
Arduino.FirmataWriter
Enclosing class:
Firmata

public static interface Firmata.Writer

An interface that the Firmata class uses to write output to the Arduino board. The implementation should forward the data over the actual connection to the board.


Method Summary
 void write(int val)
          Write a byte to the Arduino board.
 

Method Detail

write

void write(int val)
Write a byte to the Arduino board. The implementation should forward this using the actual connection.

Parameters:
val - the byte to write to the Arduino board