avrora.sim.mcu
Interface Microcontroller.Pin.Output

All Known Implementing Classes:
Mica.LED
Enclosing interface:
Microcontroller.Pin

public static interface Microcontroller.Pin.Output

The Output interface represents an output pin. When the pin is configured to be an output and the microcontroller attempts to wrote to this pin, the installed instance of this interface will be called.


Method Summary
 void disableOutput()
           
 void enableOutput()
           
 void write(boolean level)
           
 

Method Detail

enableOutput

public void enableOutput()

disableOutput

public void disableOutput()

write

public void write(boolean level)