Como conectar control de PS4 con Raspberry Pi

 En el presente tutorial se va a explicar paso a paso como conectar un control de PS4 con una Raspberry Pi por medio de la librería  "pyPS4Controller".sudo pip instal

Materiales: 

  • 1 Raspberry Pi
  • 1 control de PS4

Pasos a seguir:

   1. Instalar la librería "pyPS4Controller".

       1.1 En la terminal escribir "sudo pip install pyPS4Controller" y enter.

   2. Encender el control presionando al mismo tiempo el botón de "Home" y "Share" para poder conectarlo por medio de bluetooth.

   3. Conectar el control por bluetooth con la Raspberry Pi.

   4. Ejecutar el siguiente código en python.

from pyPS4Controller.controller import Controller

class MyController(Controller):

    def __init__(self, **kwargs):

        Controller.__init__(self, **kwargs)

    def on_x_press(self):

       print("Hello world")

    def on_x_release(self):

       print("Goodbye world")

controller = MyController(interface="/dev/input/js0", connecting_using_ds4drv=False)

# you can start listening before controller is paired, as long as you pair it within the timeout window

controller.listen(timeout=60)

Video:



Referencia:

  • https://pypi.org/project/pyPS4Controller/

Comentarios

Entradas populares