Librerías \ Encoder

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

Encoder

Nombre

read()

Ejemplos
#include <Encoder.h> 
 
int val; 
Encoder myEncoder; 
 
void setup() { 
  // ataches the encoder to pins EI2 and pin 8
  // EI2 is pin 18 on Wiring S
  // EI2 is pin 2 on Wiring v1
  myEncoder.attach(EI2, 8); 
  myEncoder.write(0); // set the encoder position to 0
  Serial.begin(9600);
} 
 
void loop() { 
  // Reads the position or angle of the encoder variable 
  val = myEncoder.read();          // read position
  Serial.print("Encoder is at: "); // print the position
  Serial.println(val);
  delay(100); // wait 100ms for next reading
}
Descripción El método read() lee la posición de un encoder.
Sintaxis
encoder.read()
Parámetros
encoder La variable Encoder.
Retorna long
Uso Application
Updated on July 07, 2011 11:14:36pm PDT

Creative Commons License