famicom doesnt capture key presses
parent
fda468227e
commit
5ec7cf4801
|
|
@ -34,3 +34,12 @@ def __init_keys__():
|
||||||
result.append(key)
|
result.append(key)
|
||||||
return result
|
return result
|
||||||
keys = __init_keys__()
|
keys = __init_keys__()
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
import time
|
||||||
|
for key in keys:
|
||||||
|
print("pushing", key, "in...")
|
||||||
|
for i in range(3):
|
||||||
|
print("", 3-i, "...")
|
||||||
|
time.sleep(1)
|
||||||
|
tap(key)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue