OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:nunchuck
(Results
1 - 14
of
14
) sorted by null
/hardware/bsp/intel/peripheral/libupm/src/nunchuck/
CMakeLists.txt
1
set (libname "
nunchuck
")
2
set (libdescription "upm wii
nunchuck
module")
javaupm_nunchuck.i
6
#include "
nunchuck
.h"
9
%include "
nunchuck
.h"
jsupm_nunchuck.i
5
#include "
nunchuck
.h"
8
%include "
nunchuck
.h"
pyupm_nunchuck.i
6
%include "
nunchuck
.h"
8
#include "
nunchuck
.h"
nunchuck.h
35
* @defgroup
nunchuck
libupm-
nunchuck
39
* @library
nunchuck
40
* @sensor
nunchuck
54
* http://wiibrew.org/wiki/Wiimote/Extension_Controllers/
Nunchuck
63
* @image html
nunchuck
.jpg
64
* @snippet
nunchuck
.cxx Interesting
66
class
NUNCHUCK
{
69
*
NUNCHUCK
constructor
74
NUNCHUCK
(int bus, uint8_t addr=NUNCHUCK_I2C_ADDR)
[
all
...]
nunchuck.cxx
30
#include "
nunchuck
.h"
36
NUNCHUCK
::
NUNCHUCK
(int bus, uint8_t addr)
63
NUNCHUCK
::~
NUNCHUCK
()
68
bool
NUNCHUCK
::writeByte(uint8_t reg, uint8_t byte)
82
int
NUNCHUCK
::readBytes(uint8_t reg, uint8_t *buffer, int len)
93
bool
NUNCHUCK
::init()
107
void
NUNCHUCK
::update()
/hardware/bsp/intel/peripheral/libupm/examples/c++/
nunchuck.cxx
29
#include "
nunchuck
.h"
46
// Instantiate a
nunchuck
controller bus 0
47
upm::
NUNCHUCK
*
nunchuck
= new upm::
NUNCHUCK
(0);
local
51
if (!
nunchuck
->init())
53
cerr << "
nunchuck
->init() failed." << endl;
59
nunchuck
->update();
61
cout << "stickX: " <<
nunchuck
->stickX
62
<< ", stickY: " <<
nunchuck
->stickY << endl
[
all
...]
CMakeLists.txt
93
add_executable (
nunchuck
-example
nunchuck
.cxx)
216
include_directories (${PROJECT_SOURCE_DIR}/src/
nunchuck
)
353
target_link_libraries (
nunchuck
-example
nunchuck
${CMAKE_THREAD_LIBS_INIT})
/hardware/bsp/intel/peripheral/libupm/examples/java/
NUNCHUCKSample.java
38
// Instantiate a
nunchuck
controller bus 0
39
upm_nunchuck.
NUNCHUCK
nunchuck
= new upm_nunchuck.
NUNCHUCK
(0);
local
43
if (!
nunchuck
.init()) {
44
System.err.println("
nunchuck
->init() failed.");
49
nunchuck
.update();
50
System.out.println("stickX: " +
nunchuck
.getStickX() + ", stickY: "
51
+
nunchuck
.getStickY());
52
System.out.println("accelX: " +
nunchuck
.getAccelX() + ", accelY:
[
all
...]
/hardware/bsp/intel/peripheral/libupm/examples/javascript/
nunchuck.js
30
// Instantiate a
nunchuck
controller bus 0
31
var nunchuck_obj = new nunchuck_lib.
NUNCHUCK
(0);
37
console.log("
nunchuck
->init() failed.");
/hardware/bsp/intel/peripheral/libupm/examples/python/
nunchuck.py
27
# Instantiate a
nunchuck
controller bus 0 on I2C
28
myNunchuck = upmNunchuck.
NUNCHUCK
(0)
49
print "
nunchuck
->init() failed."
/hardware/bsp/intel/peripheral/libupm/docs/
changelog.md
64
* New sensors: mma7660, cjq4435, adxl335, hmtrp,
nunchuck
, otp538u, l298,
knownlimitations.md
13
* **Grove
Nunchuck
** only works with the Intel Galileo boards and is unusable
/hardware/bsp/intel/peripheral/libupm/doxy/
samples.mapping.txt
94
nunchuck
.cxx NUNCHUCKSample.java
Completed in 246 milliseconds