-
Sujet
-
import time
import keyboarddef simuler_touche_repetee(touche, intervalle):
while True:
if keyboard.is_pressed(touche):
keyboard.press(touche)
time.sleep(intervalle)
keyboard.release(touche)
else:
time.sleep(0.01)touches_direction = [‘z’, ‘q’, ‘s’, ‘d’, ‘zd’, ‘ds’, ‘sq’, ‘qz’]
intervalle_entre_appuis = 0.06print(« En attente des touches directionnelles pressées… »)
for touche in touches_direction:
thread = keyboard.thread(simuler_touche_repetee, args=(touche, intervalle_entre_appuis))
thread.start()# Laissez les threads s’exécuter
try:
while any(thread.is_alive() for thread in keyboard._threads.values()):
time.sleep(1)
except KeyboardInterrupt:
print(« Arrêt de la simulation. »)——————–
sorels52 – Envoyé depuis le Discord : Culte du code
- Vous devez être connecté pour répondre à ce sujet.