PlatformIO package of the Teensy core framework compatible with GCC 10 & C++20
No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- /* Encoder Library - Basic Example
- * http://www.pjrc.com/teensy/td_libs_Encoder.html
- *
- * This example code is in the public domain.
- */
-
- #include <Encoder.h>
-
- // Change these two numbers to the pins connected to your encoder.
- // Best Performance: both pins have interrupt capability
- // Good Performance: only the first pin has interrupt capability
- // Low Performance: neither pin has interrupt capability
- Encoder myEnc(5, 6);
- // avoid using pins with LEDs attached
-
- void setup() {
- Serial.begin(9600);
- Serial.println("Basic Encoder Test:");
- }
-
- long oldPosition = -999;
-
- void loop() {
- long newPosition = myEnc.read();
- if (newPosition != oldPosition) {
- oldPosition = newPosition;
- Serial.println(newPosition);
- }
- }
|