Ergebnis 1 bis 14 von 14
-
29.12.2006, 22:53 #1Micha
Wiimote am PC mit AVM BlueFRITZ! geht das??
Die Wiimote wird mir auch angezeigt aber ich kann sie nicht mit einem Profil anmelden???
Bin ratlos, hat es schon jemand mit dem AVM BlueFRITZ! V2 geschafft?
-
Wiimote am PC mit AVM BlueFRITZ! geht das??
Schau dir mal diesen Bereich an. Dort ist für jeden was dabei!
-
30.12.2006, 07:17 #2jotwee
AW: Wiimote am PC mit AVM BlueFRITZ! geht das??
yep, klappt... beim verbinden musst du die knöpfe 1 und 2 der wiimote gleichzeitig gedrückt halten
-
30.12.2006, 11:06 #3Micha
AW: Wiimote am PC mit AVM BlueFRITZ! geht das??
Das habe ich getan, die Steuereinheit wird auch angezeigt, aber ich kann sie nicht mit einem Profil (z.B. HID) anmelden.
-
01.01.2007, 15:08 #4Mööp
AW: Wiimote am PC mit AVM BlueFRITZ! geht das??
-
01.01.2007, 16:12 #5nunu
AW: Wiimote am PC mit AVM BlueFRITZ! geht das??
Versuche auch gerade den Remote mit dem PC zu verbinden. Wurde auch gefunden. Wie ist denn aber der Code um den PC und den Remote zu koppeln?
-
01.01.2007, 20:39 #6Slayter
AW: Wiimote am PC mit AVM BlueFRITZ! geht das??
ich hab auch den bluefritz v2 wenn ich suche starten klicke findet er die fb zwar aba ich kann da nichts mit machen ich will nähmlich miis vom pc auf die wiimode laden nur da müssen die irgenwie verbunden sein. hat jemand da ne lösung? dieses BlueSoil Stack ist das mit den bluefritz kompitabel und wo kann man sich das downloaden?
THX im vorraus
mfg Slayter
EDIT: kennt jemand das programm Mii-Mega-Mall
-
16.03.2007, 00:12 #7tomas
AW: Wiimote am PC mit AVM BlueFRITZ! geht das??
-
16.03.2007, 19:18 #8leo2k
AW: Wiimote am PC mit AVM BlueFRITZ! geht das??
was willst du denn wissen?
also ich hab per glovepie und ppjoy problemlos meinen wii classic controller unter windows als gamepad mit 4 analog achsen und 10 digitalen knöpfen betrieben.
nach belieben lässt sich dann noch zb die lautstärkeregelung vom pc auf die + und - tasten vom wii controller legen
hier mal mein glovepie script welches für classic controller / nunchuk und wiimote alleine ausgelegt ist:
Code:// lautstrkeregelung auf plus und minus an der wiimote key.volumedown = wiimote.minus key.VolumeUp = wiimote.plus // abfrage ob classic controller angeschlossen ist // if wiimote.HasClassic // bindings auf joysticktasten ppjoy.digital1 = wiimote.Classic.a ppjoy.digital2 = wiimote.Classic.b ppjoy.digital3 = wiimote.Classic.y ppjoy.digital4 = wiimote.Classic.x ppjoy.digital7 = wiimote.Classic.Home ppjoy.digital12 = wiimote.classic.l ppjoy.digital16 = wiimote.Classic.LFull ppjoy.digital13 = wiimote.classic.r ppjoy.digital17 = wiimote.Classic.RFull ppjoy.digital14 = wiimote.Classic.ZL ppjoy.digital15 = wiimote.Classic.ZR // steuerkreutz vom classic controller auf die pfeiltasten gelegt key.up = wiimote.Classic.Up key.Down = wiimote.Classic.Down key.Left = wiimote.Classic.Left key.Right = wiimote.Classic.Right // enter, esc auf plus und minus vom classic controller keyboard.Enter = wiimote.Classic.Plus keyboard.Escape = wiimote.Classic.Minus // beide analog sticks PPJoy.Analog0 = wiimote.Classic.Joy1x ppjoy.analog1 = wiimote.Classic.Joy1Y ppjoy.analog2 = wiimote.Classic.Joy2x ppjoy.analog3 = wiimote.Classic.Joy2Y // leds Wiimote.Leds = 0 if wiimote.Classic.home wiimote.leds = 1 else if wiimote.Classic.a Wiimote.Leds = 2 else if wiimote.Classic.b wiimote.leds = 3 else if wiimote.Classic.x wiimote.leds = 4 else if wiimote.Classic.y wiimote.leds = 5 else if wiimote.Classic.up wiimote.leds = 6 else if wiimote.Classic.down wiimote.leds = 7 else if wiimote.Classic.left wiimote.leds = 8 else if wiimote.Classic.right wiimote.leds = 9 else if wiimote.Classic.l or wiimote.Classic.LFull wiimote.leds = 10 else if wiimote.Classic.r or wiimote.Classic.RFull wiimote.leds = 11 else if wiimote.Classic.zl wiimote.leds = 12 else if wiimote.Classic.zr wiimote.leds = 13 else if wiimote.Classic.plus wiimote.leds = 14 else if wiimote.Classic.minus wiimote.leds = 15 endif /* // abfrage ob nunchuk angeschlossen ist else if wiimote.HasNunchuk // bindings auf joystick PPJoy.Analog0 = wiimote.nunchuk.joyx ppjoy.analog1 = wiimote.nunchuk.joyy ppjoy.digital1 = wiimote.A ppjoy.digital2 = wiimote.b ppjoy.digital5 = wiimote.Plus ppjoy.digital6 = wiimote.Minus ppjoy.digital7 = wiimote.Home ppjoy.digital8 = wiimote.Up ppjoy.digital9 = wiimote.Down ppjoy.digital10 = wiimote.Left ppjoy.digital11 = wiimote.Right ppjoy.digital12 = wiimote.one ppjoy.digital13 = wiimote.two ppjoy.digital14 = wiimote.nunchuk.zbutton ppjoy.digital15 = wiimote.nunchuk.cbutton // leds Wiimote.Leds = 0 if wiimote.home wiimote.leds = 1 else if wiimote.a Wiimote.Leds = 2 else if wiimote.b wiimote.leds = 3 else if wiimote.one wiimote.leds = 4 else if wiimote.Two wiimote.leds = 5 else if wiimote.up wiimote.leds = 6 else if wiimote.down wiimote.leds = 7 else if wiimote.left wiimote.leds = 8 else if wiimote.right wiimote.leds = 9 else if wiimote.nunchuk.zbutton wiimote.leds = 12 else if wiimote.Nunchuk.CButton wiimote.leds = 13 else if wiimote.plus wiimote.leds = 14 else if wiimote.minus wiimote.leds = 15 endif else // wenn nichts angeschlossen ist die tasten der wiimote auf quer haltung mappen ppjoy.digital1 = wiimote.one ppjoy.digital2 = wiimote.two ppjoy.digital5 = wiimote.Plus ppjoy.digital6 = wiimote.Minus ppjoy.digital7 = wiimote.Home ppjoy.digital8 = wiimote.left ppjoy.digital9 = wiimote.right ppjoy.digital10 = wiimote.down ppjoy.digital11 = wiimote.up ppjoy.digital12 = wiimote.b ppjoy.digital13 = wiimote.a // leds Wiimote.Leds = 0 if wiimote.home wiimote.leds = 1 else if wiimote.a Wiimote.Leds = 2 else if wiimote.b wiimote.leds = 3 else if wiimote.one wiimote.leds = 4 else if wiimote.Two wiimote.leds = 5 else if wiimote.up wiimote.leds = 6 else if wiimote.down wiimote.leds = 7 else if wiimote.left wiimote.leds = 8 else if wiimote.right wiimote.leds = 9 else if wiimote.plus wiimote.leds = 14 else if wiimote.minus wiimote.leds = 15 endif endif */
-
17.03.2007, 23:34 #9Kowymoy
AW: Wiimote am PC mit AVM BlueFRITZ! geht das??
Ja habe mal ein Video gesehen das geht! Ist aber nicht sehr gut....!^^
-
18.03.2007, 17:45 #10leo2k
AW: Wiimote am PC mit AVM BlueFRITZ! geht das??
was ist nicht gut?
das funktioniert prefekt.
und wenn man schon die wii controller hat, dann hat man gleichzeitig auch günstig bluetooth controller für den pc
-
18.03.2007, 22:18 #11Kowymoy
-
19.03.2007, 08:52 #12leo2k
AW: Wiimote am PC mit AVM BlueFRITZ! geht das??
darum gehts mir ja garnicht. ich rede doch davon den controller als gamepad am pc zu nutzen. logisch ist ne richtige maus besser als der pointer von der wiimote
-
19.03.2007, 22:35 #13Kowymoy
-
26.12.2007, 11:55 #14U1n2r3e4gistriert
AW: Wiimote am PC mit AVM BlueFRITZ! geht das??
Als was wir bei euch die Wiimote angezeigt als Nintendo RVL-CNT 01 oder als Bluetooth HID Joystick an meinem Laptop (XP Pro) wird die Wii als Nintendo RVL-CNT 01 angezeigt an meinem Desktop PC als Bluetooth HID Joystick. Mein Problem is am Desktop PC funktionieren die Axen nich also bei der Kalibrierung funzen die Tasten nur die Tasten nich sonst selbe einstellungen auch der Windows Treiber is gleich
Ähnliche Themen
-
Hilfe !!! Wiimote Sync geht nicht: hallo, hab bislang eine wiimote gehabt, nun hab ich mir heute eine 2te gekauft und wollte die syncronisieren. nun gehn beide nicht. Egal mit... -
Wiimote nicht gleich Wiimote: Hallo... Gleich vorweg.. die Überschrift ist nich so ernst zu nehmen...soll nur interesant wirken.. =o) Bei IGN habe ich eben gelesen das... -
WiiMote geht nicht mehr! HELP!: Hey ich bräuchte dringend Hilfe: Wollte meine Wii vorhin mit der Fernbedienung anschalten aber die Konsole startete nicht. Die WiiMote leutete (alle... -
Wiimote geht net mehr... (weil Batterien leer waren): hi also ich bin neu hier und hab auch direkt ein problem. habe meine wii zu weihnachten bekommen, konnte zuhause aber nicht spielen weil ich nur... -
Wiimote geht an und dann wieder aus ???: Hallo liebe Forennutzer, ich hoffe auf eure Mithilfe, denn ich habe ein Technikproblem mit der Wiimote. Sobald ich die Wiimote-Fernbedienung...
Liegen halt auch fast 12 Stunden zwischen den beiden Berichten, in denen es ja durchaus auch einfach zu neuen Erkenntnissen hinsichtlich der...
Kuriose, schockierende, witzige und seltsame News