You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
691 B
35 lines
691 B
VERSION 1
|
|
|
|
KEYSWITCH A 2 1
|
|
KEYSWITCH S 2 2
|
|
|
|
# ==============================================================================
|
|
NAME Keys active when pressed
|
|
|
|
RUN 4 ms
|
|
PRESS A
|
|
RUN 1 cycle
|
|
EXPECT keyboard-report Key_A # Key A should be pressed
|
|
|
|
RUN 4 ms
|
|
RELEASE A
|
|
RUN 1 cycle
|
|
EXPECT keyboard-report empty # No keys should be pressed
|
|
|
|
RUN 4 ms
|
|
PRESS A
|
|
PRESS S
|
|
RUN 1 ms
|
|
EXPECT keyboard-report Key_A # Key A should be pressed
|
|
EXPECT keyboard-report Key_A, Key_S # A and S should be pressed
|
|
|
|
RUN 4 ms
|
|
RELEASE A
|
|
RELEASE S
|
|
RUN 1 cycle
|
|
# A is released first because of scan order
|
|
EXPECT keyboard-report Key_S # Key S should be pressed
|
|
EXPECT keyboard-report empty # No keys should be pressed
|
|
|
|
RUN 5 ms
|