Pinguino



Name digitalWrite()
Examples
import hypermedia.pinguino.*;

Pinguino pinguino = new Pinguino(this);      // connect to the Pinguino board
pinguino.digitalWrite( 0, Pinguino.HIGH );   // send 1 on pin 0
Description Send the given value to the specified pin number.
Syntax digitalWrite(pin, value);
Parameters
pin int : the target pin number
value int : the new pin value ( 1, HIGH, 0, LOW )
Return None
Usage Application