Bonjour,
J'ai un projet a faire mais je rencontre :quelque difficulté, je dois me connecter a une wiimote par bluetooth et creer un programme 3D utilisant les données envoyes par la wiimote. J'ai installer l'api wiiremoteJ et aussi l'api JSR082 et pour le moment j'utilise Eclipse. J'ai bien spécifier les deux apis car il reconner les importations mais lorsque j'execute j'arrive pas a me connecter a la wimote.
Voici le code sources que j'essaye de faire fonctionner(juste un test)
Et voici le message d'erreur que j'ai et que je n'arrive pas a résoudre.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25 public class DataCapture { public WiiRemote remote; public DataCapture( WiiRemote remote){ this.remote=remote; } public static void main(String[] args) { System.out.println("Hello World!!"); try{ WiiRemote remote = WiiRemoteJ.findRemote(); DataCapture capture=new DataCapture(remote); System.out.println("Remote find"); }catch(InterruptedException e){ System.out.println("Remote not found"); System.out.println(e); } } }
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10 Hello World!! Exception in thread "main" java.lang.IllegalStateException: Bluetooth failed to initialize. There is probably a problem with your local Bluetooth stack or API. at wiiremotej.WiiRemoteJ.<clinit>(WiiRemoteJ.java:57) at wiidata.DataCapture.main(DataCapture.java:17) Caused by: javax.bluetooth.BluetoothStateException: Unable to load HCIManager. org.javabluetooth.stack.hci.HCIException: BluetoothStack not initalized. at javax.bluetooth.LocalDevice.<init>(LocalDevice.java:49) at javax.bluetooth.LocalDevice.getLocalDevice(LocalDevice.java:62) at wiiremotej.WiiRemoteJ.<clinit>(WiiRemoteJ.java:49) ... 1 more
Je tiens a préciser que j'ai chercher grace a mon ami google mais rien n'a pu m'aider.
config:
Ubuntu 7.10
Partager