|
Last change
on this file since 11504 was
9780,
checked in by georgr, 12 years ago
|
|
WiiCpp library successfully added - won't work without libbluetooth-dev
|
-
Property svn:executable set to
*
|
|
File size:
1.3 KB
|
| Line | |
|---|
| 1 | /* |
|---|
| 2 | * balanceboard.h |
|---|
| 3 | * |
|---|
| 4 | * Written By: |
|---|
| 5 | * Gabriele Randelli |
|---|
| 6 | * Email: < randelli (--AT--) dis [--DOT--] uniroma1 [--DOT--] it > |
|---|
| 7 | * |
|---|
| 8 | * Copyright 2010 |
|---|
| 9 | * |
|---|
| 10 | * This file is part of wiiC. |
|---|
| 11 | * |
|---|
| 12 | * This program is free software; you can redistribute it and/or modify |
|---|
| 13 | * it under the terms of the GNU General Public License as published by |
|---|
| 14 | * the Free Software Foundation; either version 3 of the License, or |
|---|
| 15 | * (at your option) any later version. |
|---|
| 16 | * |
|---|
| 17 | * This program is distributed in the hope that it will be useful, |
|---|
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 20 | * GNU General Public License for more details. |
|---|
| 21 | * |
|---|
| 22 | * You should have received a copy of the GNU General Public License |
|---|
| 23 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
|---|
| 24 | * |
|---|
| 25 | * $Header$ |
|---|
| 26 | * |
|---|
| 27 | */ |
|---|
| 28 | |
|---|
| 29 | /** |
|---|
| 30 | * @file |
|---|
| 31 | * @brief Balance Board expansion device |
|---|
| 32 | */ |
|---|
| 33 | #ifndef BALANCEBOARD_H_INCLUDED |
|---|
| 34 | #define BALANCEBOARD_H_INCLUDED |
|---|
| 35 | |
|---|
| 36 | #include "wiic_internal.h" |
|---|
| 37 | |
|---|
| 38 | #ifdef __cplusplus |
|---|
| 39 | extern "C" { |
|---|
| 40 | #endif |
|---|
| 41 | |
|---|
| 42 | int balance_board_handshake(struct wiimote_t* wm, struct balance_board_t* bb, byte* data, unsigned short len); |
|---|
| 43 | |
|---|
| 44 | void balance_board_disconnected(struct balance_board_t* bb); |
|---|
| 45 | |
|---|
| 46 | void balance_board_event(struct balance_board_t* bb, byte* msg); |
|---|
| 47 | |
|---|
| 48 | #ifdef __cplusplus |
|---|
| 49 | } |
|---|
| 50 | #endif |
|---|
| 51 | |
|---|
| 52 | #endif // BALANCEBOARD_H_INCLUDED |
|---|
Note: See
TracBrowser
for help on using the repository browser.