/hardware/bsp/intel/peripheral/libupm/src/rotaryencoder/ |
javaupm_rotaryencoder.i | 7 #include "rotaryencoder.h" 10 %include "rotaryencoder.h"
|
jsupm_rotaryencoder.i | 5 #include "rotaryencoder.h" 8 %include "rotaryencoder.h"
|
pyupm_rotaryencoder.i | 6 %include "rotaryencoder.h" 8 #include "rotaryencoder.h"
|
CMakeLists.txt | 1 set (libname "rotaryencoder")
|
rotaryencoder.cxx | 29 #include "rotaryencoder.h" 34 RotaryEncoder::RotaryEncoder(int pinA, int pinB) 64 RotaryEncoder::~RotaryEncoder() 72 void RotaryEncoder::initPosition(int count) 77 int RotaryEncoder::position() 82 void RotaryEncoder::signalAISR(void *ctx) 84 upm::RotaryEncoder *This = (upm::RotaryEncoder *)ctx [all...] |
rotaryencoder.h | 35 * @defgroup rotaryencoder libupm-rotaryencoder 39 * @library rotaryencoder 40 * @sensor rotaryencoder 61 * @image html rotaryencoder.jpg 62 * @snippet rotaryencoder.cxx Interesting 64 class RotaryEncoder { 67 * RotaryEncoder constructor 72 RotaryEncoder(int pinA, int pinB); 74 * RotaryEncoder destructo [all...] |
/hardware/bsp/intel/peripheral/libupm/examples/c++/ |
rotaryencoder.cxx | 28 #include "rotaryencoder.h" 47 upm::RotaryEncoder* rotaryencoder = new upm::RotaryEncoder(2, 3); local 51 cout << "Position: " << rotaryencoder->position() << endl; 59 delete rotaryencoder;
|
CMakeLists.txt | 85 add_executable (rotaryencoder-example rotaryencoder.cxx) 209 include_directories (${PROJECT_SOURCE_DIR}/src/rotaryencoder) 345 target_link_libraries (rotaryencoder-example rotaryencoder ${CMAKE_THREAD_LIBS_INIT})
|
/hardware/bsp/intel/peripheral/libupm/examples/java/ |
RotaryEncoderSample.java | 39 upm_rotaryencoder.RotaryEncoder rotaryencoder = new upm_rotaryencoder.RotaryEncoder(2, 3); local 42 System.out.println("Position: " + rotaryencoder.position());
|
/hardware/bsp/intel/peripheral/libupm/examples/javascript/ |
rotaryencoder.js | 27 var rotaryEncoder = require("jsupm_rotaryencoder"); 30 var myRotaryEncoder = new rotaryEncoder.RotaryEncoder(2, 3);
|
/hardware/bsp/intel/peripheral/libupm/examples/python/ |
rotaryencoder.py | 28 myRotaryEncoder = upmRotaryEncoder.RotaryEncoder(2, 3);
|
/hardware/bsp/intel/peripheral/libupm/docs/ |
changelog.md | 76 * New sensors: rpr220, rotaryencoder, biss0001, rfr359f, grovespeaker, mq303a,
|
/hardware/bsp/intel/peripheral/libupm/doxy/ |
samples.mapping.txt | 103 rotaryencoder.cxx RotaryEncoderSample.java
|
/frameworks/native/services/inputflinger/ |
EventHub.cpp | [all...] |