Index
 
  The Wiring 1.0 _ALPHA_ Reference is a work in progress.
If you see any errors or have any comments, please write to: hbarragan [at] uniandes.edu.co
Name  

portRead()

   
Examples  
int inport = 0; 
int val = 0; 
 
void setup() { 
  portMode(inport, INPUT); 
  Serial.begin(9600); 
} 
 
void loop() { 
  val = portRead(inport); 
  Serial.print(val); 
} 
 

Description   The portRead() method reads the value of the digital input port specified.
   
Syntax  
portRead(port)
   
Parameters  
port   Port number to read from

   
Returns   int
   
Usage   Application
   
Related   INPUT
OUTPUT
portWrite()
portMode()