12345678910111213141516171819202122232425262728293031323334353637 |
- Control_PW control_model_PW {
- PW_Control/Up up {
- isInitial = False
- isError = False
- name = "ctrl_up"
- }
- PW_Control/Down down {
- isInitial = False
- isError = False
- name = "ctrl_down"
- }
- PW_Control/Neutral neutral {
- isInitial = True
- isError = True
- name = "ctrl_neutral"
- }
- PW_Control/UpPressed (down, neutral) {
- objDetected = "*"
- }
- PW_Control/UpPressed (neutral, up) {
- objDetected = "*"
- }
- PW_Control/DownPressed (up, neutral) {
- objDetected = "*"
- }
- PW_Control/DownPressed (neutral, down) {
- objDetected = "*"
- }
- PW_Control/NonePressed (up, neutral) {
- objDetected = "*"
- }
- PW_Control/NonePressed (down, neutral) {
- objDetected = "*"
- }
- }
|