Referencia para la versión de Wiring 1.0 Build 0100+. Si tiene una versión previa, use la referencia incluida con su software. Si encuentra errores o tiene comentarios, no dude en contactarnos.
Clase | Wiring |
||||
---|---|---|---|---|---|
Nombre | pinMode() |
||||
Ejemplos | //Import the Serial i/o and the Wiring Libraries import processing.serial.*; import Wiring.*; //Create a Wiring object Wiring wiring; void setup() { //print the serial devices list println(Wiring.list()); //inicialized the wiring object wiring = new Wiring ( this, Wiring.list()[1], 57600); //sets the pinMode wiring.pinMode(48, Wiring.OUTPUT); } void draw() { //......... } |
||||
Descripción | El método pinMode() asigna pin digital I/O especificado como INPUT o OUTPUT. Un pin I/O digital o binario puede tener dos posible valores: HIGH o LOW. Es posible asignar o leer el valor de un pin digital I/O usando los métodos digitalWrite() y digitalRead(). | ||||
Sintaxis | Wiring.pinMode(pin, modo)
|
||||
Parámetros |
|
||||
Retorna | Ninguno | ||||
Uso | Application |