- refactored code structure - fixed playerID led display - added Color function with tuple support - added type checking in every function - added more Exceptions for out of bound values
16 lines
499 B
Python
16 lines
499 B
Python
from pydualsense import *
|
|
|
|
# get dualsense instance
|
|
dualsense = pydualsense()
|
|
dualsense.init()
|
|
# set color around touchpad to red
|
|
dualsense.light.setColorI(255,0,0)
|
|
# enable microphone indicator
|
|
dualsense.audio.setMicrophoneLED(1)
|
|
# set all player 1 indicator on
|
|
dualsense.light.setPlayerID(PlayerID.player1)
|
|
# sleep a little to see the result on the controller
|
|
# this is not needed in normal usage
|
|
import time; time.sleep(2)
|
|
# terminate the thread for message and close the device
|
|
dualsense.close() |