import pyvjoy
from time import sleep
#Pythonic API, item-at-a-time
j = pyvjoy.VJoyDevice(1)
#turn button number 15 on
j.set_button(2,1)
sleep(1)
j.set_button(2,0)
sleep(1)
#Set X axis to fully left
j.set_axis(pyvjoy.HID_USAGE_X, 0x1)#좌
j.set_axis(pyvjoy.HID_USAGE_Y, 0x1)#좌
sleep(1)
#Set X axis to fully right
j.set_axis(pyvjoy.HID_USAGE_X, 0x8000)#우
j.set_axis(pyvjoy.HID_USAGE_Y, 0x7000)#우
sleep(1)
j.set_axis(pyvjoy.HID_USAGE_X, 0x4000)#중간
j.set_axis(pyvjoy.HID_USAGE_Y, 0x4000)#중간
sleep(1)
#Also implemented:
j.reset()
j.reset_buttons()
j.reset_povs()
'프로그래밍언어 > Python' 카테고리의 다른 글
마우스녹화 로그 (0) | 2023.07.24 |
---|---|
넘버키 단축키 매크로 (0) | 2023.05.07 |
엑셀 CSV 파일(utf8)로드시 한글깨짐 (4) | 2022.12.15 |
Python Exe빌드 (0) | 2022.12.03 |
구글번역 api (0) | 2022.07.23 |