From f34e312ae425fabd817ff1c0d8bb118d738fd4b5 Mon Sep 17 00:00:00 2001 From: "guilhem.duche" Date: Sun, 1 Jun 2008 14:57:47 +0000 Subject: [PATCH] Created wiki page through web user interface. git-svn-id: http://wiiusej.googlecode.com/svn/wiki@163 ae48ae66-6a45-0410-b38e-211266189506 --- FAQ.wiki | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 FAQ.wiki diff --git a/FAQ.wiki b/FAQ.wiki new file mode 100644 index 0000000..918d098 --- /dev/null +++ b/FAQ.wiki @@ -0,0 +1,38 @@ +#Frequently Asked Questions + += Frequently Asked Questions = + +Q : Can WiiuseJ send audio to the wiimote ? + +A : Wiiuse doesn't support it so WiiuseJ can't support either. + + +Q : Why do i got this error ? +{{{ + +Exception in thread "Thread-0" java.lang.NoSuchMethodError: java.util.Arrays.copyOfRange([Ljava/lang/Object;II)[Ljava/lang/Object; + +at wiiusej.wiiuseapievents.EventsGatherer.getEvents(EventsGatherer.java:227) + +at wiiusej.WiiUseApiManager.run(WiiUseApiManager.java:415) + +[INFO] Connected to wiimote [id 1]. + +}}} + +A : So far you need java 1.6 to use WiiuseJ. Here a method from java 1.6 is missing in the java you have. I'll fix it in another release. + + +Q : How can i reconnect the wiimotes and find new wiimotes. + +A : Shutdown WiiuseJ: WiiUseApiManager.shutdown(); and get wiimotes again : WiiUseApiManager.getWiimotes(2, true); + + +Q : I have this error: Error: [ERROR] Unable to +determine bluetooth stack type. What can i do ? + +A : You can try to force the type of bluetooth stack you got. For this get the wiimotes this way : WiiUseApiManager.getWiimotes(2, true, WiiUseApiManager.WIIUSE_STACK_MS); if you got a windows bluetooth stack or widcomm. Use WiiUseApiManager.WIIUSE_STACK_BLUESOLEIL if you got bluesoleil. + + + +