28881536 發表於 2021-1-1 12:07:06

鍵盤按鍵程式

有人可教學或幫寫鍵盤的1~=嗎 感謝

無界 發表於 2021-1-3 21:13:38

你是要程式自動輸入1~=
還是要ˊ偵測鍵盤按下了啥

無界 發表於 2021-1-13 03:21:47

import keyboard
import asyncio
import threading
import random

KeyEvenStat = 0

def keyStart():
    global KeyEvenStat
    while True:
        if KeyEvenStat == 0:
            pass
        else:
            randomkey = random.randint(0,9)
            print(randomkey)
            if randomkey == 0:
                keyboard.write("=")
            else:
                keyboard.write(str(randomkey))
        asyncio.run(asyncio.sleep(0.5))#調整速度

def abc(x):
    global KeyEvenStat
    print(str(x))
    if str(x) == 'KeyboardEvent(f3 down)':#按下F3開始
        KeyEvenStat = 1
    if str(x) == 'KeyboardEvent(f4 down)':#按下F4結束
        KeyEvenStat = 0

t=threading.Thread(target=keyStart)
t.start()
keyboard.hook(abc)
keyboard.wait()

28881536 發表於 2021-1-15 00:02:01

無界 發表於 2021-1-13 03:21 static/image/common/back.gif


想要程式而已>< 可以幫我改成程式嗎

無界 發表於 2021-1-15 01:48:54

28881536 發表於 2021-1-15 00:02 static/image/common/back.gif
想要程式而已>< 可以幫我改成程式嗎

https://www.youtube.com/watch?v=JJCcfBQwCfY&ab_channel=%E7%84%A1%E7%95%8C

28881536 發表於 2021-1-16 21:42:47

無界 發表於 2021-1-15 01:48 static/image/common/back.gif
https://www.youtube.com/watch?v=JJCcfBQwCfY&ab_channel=%E7%84%A1%E7%95%8C

https://streamable.com/0q7gbr
這個你看一下 我用了可是最下面技能列沒有按下去
第一個是用您做的
第二個是按鍵的有嘟一聲那個
頁: [1]
查看完整版本: 鍵盤按鍵程式