control_model.mvc 816 B

12345678910111213141516171819202122232425262728293031323334353637
  1. Control_PW control_model_PW {
  2. PW_Control/Up up {
  3. isInitial = False
  4. isError = False
  5. name = "ctrl_up"
  6. }
  7. PW_Control/Down down {
  8. isInitial = False
  9. isError = False
  10. name = "ctrl_down"
  11. }
  12. PW_Control/Neutral neutral {
  13. isInitial = True
  14. isError = True
  15. name = "ctrl_neutral"
  16. }
  17. PW_Control/UpPressed (down, neutral) {
  18. objDetected = "*"
  19. }
  20. PW_Control/UpPressed (neutral, up) {
  21. objDetected = "N"
  22. }
  23. PW_Control/DownPressed (up, neutral) {
  24. objDetected = "*"
  25. }
  26. PW_Control/DownPressed (neutral, down) {
  27. objDetected = "*"
  28. }
  29. PW_Control/NonePressed (up, neutral) {
  30. objDetected = "*"
  31. }
  32. PW_Control/NonePressed (down, neutral) {
  33. objDetected = "*"
  34. }
  35. }