[Hardware] Collegare Nintendo Pro Controller al PC via Bluetooth
  • In diretta da GamesVillage.it
    • News
    • -
    • In Evidenza
    • -
    • Recensioni
    • -
    • RetroGaming
    • -
    • Anteprime
    • -
    • Video
    • -
    • Cinema

Pag 1 di 2 12 UltimoUltimo
Visualizzazione risultati da 1 a 15 di 18

Discussione: Collegare Nintendo Pro Controller al PC via Bluetooth

Cambio titolo
  1. #1

    Collegare Nintendo Pro Controller al PC via Bluetooth

    Salve a tutti. Ho letto in giro che è possibile collegare il pro contrller wireless al PC. Sono riuscito ad effettuare l' accoppiamento via bluetooth, ma ora come faccio a farlo riconoscere dai giochi? Qualcuno l' ha fatto?
    I racconti dei miei viaggi: GV, Facebook, Youtube , Twitter, Pinterest, Website
    Vuoi propormi la tua musica da inserire nel mio prossimo video? scrivimi in privato

  2. #2
    Up

    Inviato da Nexus 7 2013 con Tapatalk
    I racconti dei miei viaggi: GV, Facebook, Youtube , Twitter, Pinterest, Website
    Vuoi propormi la tua musica da inserire nel mio prossimo video? scrivimi in privato

  3. #3
    Monster Hunter L'avatar di lonewolf301
    Registrato il
    02-08
    Località
    Alessandria
    Messaggi
    15.160
    Hai provato con programmi tipo Xpadder o simili per programmare i tasti? Di più non so dirti dato che su pc uso un comune pad 360 con il cavo.
    Metroid, Fire Emblem & Xenoblade NON sono CASUAL! Waiting: Xenoblade Chronicles X, all aboard Hype Mech!
    MH4U out, back to the hunt! Greatsword master race, but Insect Glaive is OP...
    Nintendo ID: MarKell87 Codice Amico 3DS: 2681-0758-5686 (mandate pm se mi aggiungente)

    - Ricorda: se hai dovuto sparare più di un colpo non stavi usando una Jacobs! [cit.]

    27/11/11: Addio nonno, sei stato il migliore del mondo per me, come un padre, e mi mancherai tantissimo.

  4. #4
    Utente L'avatar di JamesSunderland
    Registrato il
    05-09
    Località
    Mantova
    Messaggi
    712
    Citazione QuasarLex Visualizza Messaggio
    Salve a tutti. Ho letto in giro che è possibile collegare il pro contrller wireless al PC. Sono riuscito ad effettuare l' accoppiamento via bluetooth, ma ora come faccio a farlo riconoscere dai giochi? Qualcuno l' ha fatto?
    http://www.amazon.it/Mayflash-Contro...mayflash+wii+u

  5. #5
    Rotom è Leggenda L'avatar di -onthevoice-
    Registrato il
    12-05
    Messaggi
    20.215
    Scarica GlovePie e fai girare uno script apposito, che ad esempio per Dark Souls è il seguente:

    Spoiler:
    //______________Sturm-Falke(RDA)s Dark Souls Prepare to Die Wii Remote Classic Controller Script______\\
    //______________Buttons are designed to match 360 controller buttons to prevent confusion_____________\\
    //______________If you are having problems try enabling one of the solutions below____________________\\
    //______________Have fun! be sure to check my steam post from time to time!___________________________\\

    //______________Wii Remote Debugging. Enable one at a time and start from the top.____________________\\

    //debug = "On:" + Wiimote1.Exists + " Wiimote Battery Level:" + Wiimote1.Battery
    //debug = "X: "+ DeadZone(Classic1.LeftStickX, 10%) +" Y: "+ DeadZone(Classic1.LeftStickY, 10%)
    //____Enables the first LED Light on the Wii Remote____\\
    wiimote1.led1 = true
    //____Please note that this does not use Xinput____\\


    //_____Advanced Walking/Running Start____\\
    if(Classic.LeftStickY < -0.3){
    Keyboard.W = true
    }else{
    Keyboard.W = false
    }
    if(Classic.LeftStickY > 0.3){
    Keyboard.S = true
    }else{
    Keyboard.S = false
    }
    if(Classic.LeftStickX < -0.3){
    Keyboard.A = true
    }else{
    Keyboard.A = false
    }
    if(Classic.LeftStickX > 0.3){
    Keyboard.D = true
    }else{
    Keyboard.D = false
    }
    //Left stick walk code\\
    if(Abs(Classic.LeftStickY) > 0.3 and Abs(Classic.LeftStickY) < 0.7 and Abs(Classic.LeftStickX) < 0.7){
    Keyboard.LeftControl = true
    }elseif(Abs(Classic.LeftStickX) > 0.3 and Abs(Classic.LeftStickX) < 0.7 and Abs(Classic.LeftStickY) < 0.7){
    Keyboard.LeftControl = true
    }else{
    Keyboard.LeftControl = false
    }

    //_____Advanced Walking/Running end____\\



    //____Basic Camera Start____\\
    Key.I = Classic.RightStickY <= -.15 and >= -1.75 + 100*deadzone(Classic.RightStickY)
    Key.K = Classic.RightStickY >= .15 and <= 1.75 + 100*deadzone(Classic.RightStickY)
    Key.J = Classic.RightStickX <= -.15 and >= -1.75 + 100*deadzone(Classic.RightStickX)
    Key.L = Classic.RightStickX >= .15 and <= 1.75 + 100*deadzone(Classic.RightStickX)
    //____Basic Camera End____\\

    //____Basic Attacks Start____\\
    Key.U = Classic1.ZR
    Key.H = Classic1.R
    Key.LeftShift = Classic1.L
    Key.Tab = Classic1.ZL
    //____Basic Attacks End____\\

    //____Interface and Menus Start____\\
    Mouse.MiddleButton = Classic1.Plus
    Key.Q = Classic1.a
    Key.E = Classic1.x
    Key.G = Classic1.Minus
    Key.End = Classic1.Home
    Key.LeftAlt = Classic.y
    Key.Space = Classic1.b


    Key.R = Classic1.Up
    Key.F = Classic1.Down
    Key.C = Classic1.Left
    Key.V = Classic1.Right


    Key.Up = Classic1.Up
    Key.Down = Classic1.Down
    Key.Left = Classic1.Left
    Key.Right = Classic1.Right


    Key.Enter = Classic.a
    Key.BackSpace = Classic.b
    Key.PageUp = Classic.R
    Key.PageDown = Classic.L
    Key.Insert = Classic.y
    Key.Delete = Classic.x


    //____Interface and Menus End____\\



    /* //_____________________Experiments! Please ignore!______________\\
    debug = "On:" + Wiimote1.Exists + " Wiimote Battery Level:" + Wiimote1.Battery
    debug = "X: "+ DeadZone(Classic1.LeftStickX, 10%) +" Y: "+ DeadZone(Classic1.LeftStickY, 10%)
    wiimote1.led1 = true
    wiimote2.led2 = true
    wiimote3.led3 = true
    wiimote4.led4 = true
    Keyboard.Up = Wiimote1.Up
    Wiimote1.Led1 = Keyboard.One
    Wiimote2.Led2 = Keyboard.Two
    Wiimote1.Led3 = Keyboard.Three
    Wiimote2.Led4 = Keyboard.Four
    key.I = Wiimote.Nunchuk.JoyY < -0.4
    key.K = Wiimote.Nunchuk.JoyY > 0.4
    key.J = Wiimote.Nunchuk.JoyX < -0.4
    key.L = Wiimote.Nunchuk.JoyX > 0.4
    key.H = wiimote.Nunchuk.Z
    key.U = wiimote.Nunchuk.C



    ///////////////////////////////////Old Movement\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
    Key.W = Classic.LeftStickY <= -.40 and >= -1.75 + 100*deadzone(Classic.LeftStickY)
    Key.S = Classic.LeftStickY >= .40 and <= 1.75 + 100*deadzone(Classic.LeftStickY)
    Key.A = Classic.LeftStickX <= -.40 and >= -1.75 + 100*deadzone(Classic.LeftStickX)
    Key.D = Classic.LeftStickX >= .40 and <= 1.75 + 100*deadzone(Classic.LeftStickX)
    ///////////////////////////////////Old Walking\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
    Key.W + Key.LeftControl = Classic.LeftStickY <= -.15 and >= -.40 + 100*deadzone(Classic.LeftStickY)
    Key.S + Key.LeftControl = Classic.LeftStickY >= .15 and <= .40 + 100*deadzone(Classic.LeftStickY)
    Key.A + Key.LeftControl = Classic.LeftStickX <= -.15 and >= -.40 + 100*deadzone(Classic.LeftStickX)
    Key.D + Key.LeftControl = Classic.LeftStickX >= .15 and <= .40 + 100*deadzone(Classic.LeftStickX)
    Left stick
    ///////////////////////////////////Movement Start\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
    //Key.Up = Classic1.Up + Classic1.Home
    //Key.Down = Classic1.Down + Classic1.Home
    //Key.Left = Classic1.Left + Classic1.Home
    //Key.Right = Classic1.Right + Classic1.Home

    //if Wiimote1.Exists
    //var.freq = var.freq + 10
    //wiimote1.Frequency = var.freq
    //wiimote1.Volume = 40%

    ////////////Wii Remote Detection Start////////////
    if wiimote.Exists = true then
    debug = "Wiimote(s) is connected! current battery level: " + wiimote.Battery
    end

    if wiimote.Exists = false then
    Debug = "Lost connection to wii remote(s)"
    wait 3s
    Debug = "has your battries ran out?"
    wait 3s
    Debug = "Press 1 and 2 to see Battery level (leds flash battery level bar)"
    wait 3s
    Debug = "currently dissconnected!"
    end
    Wiimote1.Led1 = Keyboard.One
    ExitProgram = key.NumPadEnter
    ///////////Wii Remote Detection End////////////


    */
    End if


    Nota bene: si parla di Classic Controller Wii, non Wii U.
    Poi se ad esempio vuoi modificarlo per giocare all'emulatore GBA ti basta levare le parti relative alla telecamera e ad altri tasti non presenti sul GBA, e rimappare i tasti del CCPro su quelli (A, S, Z, X, eccetera) usati dal VisualBoy.
    Eccotene un esempio fatto da me (include delle shortcuts per salvare/ricaricare in fretta):

    Spoiler:
    //______________Sturm-Falke(RDA)s Dark Souls Prepare to Die Wii Remote Classic Controller Script______\\
    //______________Buttons are designed to match 360 controller buttons to prevent confusion_____________\\
    //______________If you are having problems try enabling one of the solutions below____________________\\
    //______________Have fun! be sure to check my steam post from time to time!___________________________\\

    //______________Wii Remote Debugging. Enable one at a time and start from the top.____________________\\

    //debug = "On:" + Wiimote1.Exists + " Wiimote Battery Level:" + Wiimote1.Battery
    //debug = "X: "+ DeadZone(Classic1.LeftStickX, 10%) +" Y: "+ DeadZone(Classic1.LeftStickY, 10%)
    //____Enables the first LED Light on the Wii Remote____\\
    wiimote1.led1 = true
    //____Please note that this does not use Xinput____\\

    Key.Space = Classic1.ZR
    Key.shift = Classic1.ZL
    Key.f1 = Classic1.Minus
    Key.f2 = Classic1.Plus

    Key.Up = Classic1.Up
    Key.Down = Classic1.Down
    Key.Left = Classic1.Left
    Key.Right = Classic1.Right

    Key.Z = Classic1.a
    Key.X = Classic1.b
    Key.Enter = Classic1.x
    Key.Backspace = Classic1.y
    Key.A = Classic1.L
    Key.S = Classic1.R


    //____Interface and Menus End____\\



    /* //_____________________Experiments! Please ignore!______________\\
    debug = "On:" + Wiimote1.Exists + " Wiimote Battery Level:" + Wiimote1.Battery
    debug = "X: "+ DeadZone(Classic1.LeftStickX, 10%) +" Y: "+ DeadZone(Classic1.LeftStickY, 10%)
    wiimote1.led1 = true
    wiimote2.led2 = true
    wiimote3.led3 = true
    wiimote4.led4 = true
    Keyboard.Up = Wiimote1.Up
    Wiimote1.Led1 = Keyboard.One
    Wiimote2.Led2 = Keyboard.Two
    Wiimote1.Led3 = Keyboard.Three
    Wiimote2.Led4 = Keyboard.Four
    key.I = Wiimote.Nunchuk.JoyY < -0.4
    key.K = Wiimote.Nunchuk.JoyY > 0.4
    key.J = Wiimote.Nunchuk.JoyX < -0.4
    key.L = Wiimote.Nunchuk.JoyX > 0.4
    key.H = wiimote.Nunchuk.Z
    key.U = wiimote.Nunchuk.C



    ///////////////////////////////////Old Movement\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
    Key.W = Classic.LeftStickY <= -.40 and >= -1.75 + 100*deadzone(Classic.LeftStickY)
    Key.S = Classic.LeftStickY >= .40 and <= 1.75 + 100*deadzone(Classic.LeftStickY)
    Key.A = Classic.LeftStickX <= -.40 and >= -1.75 + 100*deadzone(Classic.LeftStickX)
    Key.D = Classic.LeftStickX >= .40 and <= 1.75 + 100*deadzone(Classic.LeftStickX)
    ///////////////////////////////////Old Walking\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
    Key.W + Key.LeftControl = Classic.LeftStickY <= -.15 and >= -.40 + 100*deadzone(Classic.LeftStickY)
    Key.S + Key.LeftControl = Classic.LeftStickY >= .15 and <= .40 + 100*deadzone(Classic.LeftStickY)
    Key.A + Key.LeftControl = Classic.LeftStickX <= -.15 and >= -.40 + 100*deadzone(Classic.LeftStickX)
    Key.D + Key.LeftControl = Classic.LeftStickX >= .15 and <= .40 + 100*deadzone(Classic.LeftStickX)
    Left stick
    ///////////////////////////////////Movement Start\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
    //Key.Up = Classic1.Up + Classic1.Home
    //Key.Down = Classic1.Down + Classic1.Home
    //Key.Left = Classic1.Left + Classic1.Home
    //Key.Right = Classic1.Right + Classic1.Home

    //if Wiimote1.Exists
    //var.freq = var.freq + 10
    //wiimote1.Frequency = var.freq
    //wiimote1.Volume = 40%

    ////////////Wii Remote Detection Start////////////
    if wiimote.Exists = true then
    debug = "Wiimote(s) is connected! current battery level: " + wiimote.Battery
    end

    if wiimote.Exists = false then
    Debug = "Lost connection to wii remote(s)"
    wait 3s
    Debug = "has your battries ran out?"
    wait 3s
    Debug = "Press 1 and 2 to see Battery level (leds flash battery level bar)"
    wait 3s
    Debug = "currently dissconnected!"
    end
    Wiimote1.Led1 = Keyboard.One
    ExitProgram = key.NumPadEnter
    ///////////Wii Remote Detection End////////////


    */
    End if


    Ho lasciato anche qui i credits del tizio perché la base è sempre la sua.
    In generale quindi ti basta sostituire i tasti usati da Dark Souls con quelli che usa il gioco a cui vuoi giocare.
    C'è roba che si può togliere per avere uno script ancora più corto ma per non rischiare di fare danni ho lasciato anche gli experiments, tanto non impicciano.


    Robaccia di Shuffle
    Sfide progressive:
    Celebi - Diancie 1 2 - Darkrai - Giratina Forma Alterata - Giratina Forma Originale - Incineroar - Keldeo Forma Risoluta 1 2 - Kyurem - Latias - Meloetta Forma Canto - Mew - Volcanion
    Consigli vari: Cambia abilità e potenziamenti 1 2 3 4 - Pokémaratona 1 2 - Meowth (livello 37)
    Documenti utili: Aggiornamenti e drop rate - Abilità e loro potenziamenti - Subreddit

  6. #6
    Nyanyasu! L'avatar di Efdal
    Registrato il
    08-08
    Località
    Cagliari
    Messaggi
    6.054
    A questo punto fa prima a prendere questo

  7. #7
    Utente L'avatar di JamesSunderland
    Registrato il
    05-09
    Località
    Mantova
    Messaggi
    712
    Citazione Efdal Visualizza Messaggio
    A questo punto fa prima a prendere questo
    No perché quello linkato da me è wireless e funge pure sulle ps3

    Inviato dal mio LG-D802 utilizzando Tapatalk

  8. #8
    Nyanyasu! L'avatar di Efdal
    Registrato il
    08-08
    Località
    Cagliari
    Messaggi
    6.054
    Citazione JamesSunderland Visualizza Messaggio
    No perché quello linkato da me è wireless e funge pure sulle ps3

    Inviato dal mio LG-D802 utilizzando Tapatalk
    Non sò, ho sempre avuto problemi con ste cose
    Anche io usavo il DS3 su PC tramite un programma, ma erano più le rotture di scatole che altro xD
    Però se funge bene tanto meglio

  9. #9
    Utente L'avatar di JamesSunderland
    Registrato il
    05-09
    Località
    Mantova
    Messaggi
    712
    Citazione Efdal Visualizza Messaggio
    Non sò, ho sempre avuto problemi con ste cose
    Anche io usavo il DS3 su PC tramite un programma, ma erano più le rotture di scatole che altro xD
    Però se funge bene tanto meglio

    infatti questo non richiede driver di terze parti, viene visto come un wireless receiver microsoft (quindi visto come xinput).

    motionjoy dava un sacco di problemi anche a me ma in quel caso è il programma che fa schifo

  10. #10
    Nyanyasu! L'avatar di Efdal
    Registrato il
    08-08
    Località
    Cagliari
    Messaggi
    6.054
    Citazione JamesSunderland Visualizza Messaggio
    infatti questo non richiede driver di terze parti, viene visto come un wireless receiver microsoft (quindi visto come xinput).

    motionjoy dava un sacco di problemi anche a me ma in quel caso è il programma che fa schifo
    Ah, non male
    A me quel programma deve aver rovinato irrimediabilmente la batteria del mio DS3, visto che non raggiungeva più la carica

  11. #11
    Gamer dal 1989 L'avatar di Andross
    Registrato il
    07-08
    Messaggi
    5.517
    Citazione QuasarLex Visualizza Messaggio
    Salve a tutti. Ho letto in giro che è possibile collegare il pro contrller wireless al PC. Sono riuscito ad effettuare l' accoppiamento via bluetooth, ma ora come faccio a farlo riconoscere dai giochi? Qualcuno l' ha fatto?
    prima di tutto per il dispositivo bluetooth devi usare il software toshiba bluetooth stack, l'unico che a quanto ne so permette di collegare correttamente le periferiche nintendo.

    per il pad pro hai bisogno del software WiinUPro, per sincronizzarlo correttamente.

    infine col programmino vjoy configuri i tasti e lo calibri.

    Vai su youtube che trovi la guida.

  12. #12
    Citazione Andross Visualizza Messaggio
    prima di tutto per il dispositivo bluetooth devi usare il software toshiba bluetooth stack, l'unico che a quanto ne so permette di collegare correttamente le periferiche nintendo.

    per il pad pro hai bisogno del software WiinUPro, per sincronizzarlo correttamente.

    infine col programmino vjoy configuri i tasti e lo calibri.

    Vai su youtube che trovi la guida.
    eh leggevo del fato di toshiba, ma è proprio necessario?
    I racconti dei miei viaggi: GV, Facebook, Youtube , Twitter, Pinterest, Website
    Vuoi propormi la tua musica da inserire nel mio prossimo video? scrivimi in privato

  13. #13
    Gamer dal 1989 L'avatar di Andross
    Registrato il
    07-08
    Messaggi
    5.517
    Citazione QuasarLex Visualizza Messaggio
    eh leggevo del fato di toshiba, ma è proprio necessario?
    Io ho risolto con quello, cob altro non sono riuscito
    Ma funziona cp quasi tutti i dispositivi non Toshiba.
    Inviato dal mio GT-I9195 utilizzando Tapatalk

  14. #14
    Citazione Andross Visualizza Messaggio
    Io ho risolto con quello, cob altro non sono riuscito
    Ma funziona cp quasi tutti i dispositivi non Toshiba.
    Inviato dal mio GT-I9195 utilizzando Tapatalk
    ok allora proverò... ma poi come funzionamento è paragonabile a quello della xbox per PC o è comunque un compromesso? tipo gli analogici ecc...
    I racconti dei miei viaggi: GV, Facebook, Youtube , Twitter, Pinterest, Website
    Vuoi propormi la tua musica da inserire nel mio prossimo video? scrivimi in privato

  15. #15
    Gamer dal 1989 L'avatar di Andross
    Registrato il
    07-08
    Messaggi
    5.517
    Citazione QuasarLex Visualizza Messaggio
    ok allora proverò... ma poi come funzionamento è paragonabile a quello della xbox per PC o è comunque un compromesso? tipo gli analogici ecc...
    Funziona tutto. L'importante è che tu abbia un bluetooth cpn un buon raggio d'azione. Tentar non nuoce

    Inviato dal mio GT-I9195 utilizzando Tapatalk

Pag 1 di 2 12 UltimoUltimo

Regole di Scrittura

  • Tu non puoi inviare nuove discussioni
  • Tu non puoi inviare risposte
  • Tu non puoi inviare allegati
  • Tu non puoi modificare i tuoi messaggi
  •