Lircd.conf File für die VU+ STB Type IV Mode 2; FHEM und Linux Console

    Diese Seite verwendet Cookies. Durch die Nutzung unserer Seite erklären Sie sich damit einverstanden, dass wir Cookies setzen. Weitere Informationen

    • Lircd.conf File für die VU+ STB Type IV Mode 2; FHEM und Linux Console

      Hallo,

      hier ist meine lircd.conf für die Fernbedienung VU+ STB Type IV Mode2(Standard).
      Damit kann ich die VU+ aus Deep StandBy erwecken. Das geht mit Linux Console und FHEM.

      Linux Console

      Quellcode

      1. irsend SEND_ONCE "VUplus_STB_typeIV_mode2" "KEY_POWER"


      FHEM.cfg

      Quellcode

      1. ...
      2. define VU_Channel dummy
      3. attr VU_Channel room VU
      4. attr VU_Channel webCmd Power:OK:DeepStandBy
      5. define MyNotifyVuPower notify VU_Channel:Power { \
      6. system ("irsend SEND_ONCE VUplus_STB_typeIV_mode2 KEY_POWER");; \
      7. }
      8. define MyNotifyVuOk notify VU_Channel:OK { \
      9. system ("irsend SEND_ONCE VUplus_STB_typeIV_mode2 KEY_OK");; \
      10. }
      11. define MyNotifyVuDeepStandBy notify VU_Channel:DeepStandBy { \
      12. system ("irsend SEND_START VUplus_STB_typeIV_mode2 KEY_POWER");; \
      13. fhem ("sleep 1");; \
      14. system ("irsend SEND_STOP VUplus_STB_typeIV_mode2 KEY_POWER");; \
      15. fhem ("sleep 1");; \
      16. system ("irsend SEND_ONCE VUplus_STB_typeIV_mode2 KEY_UP");; \
      17. fhem ("sleep 1");; \
      18. system ("irsend SEND_ONCE VUplus_STB_typeIV_mode2 KEY_OK");; \
      19. }
      20. ...
      Alles anzeigen


      lircd.conf

      Quellcode

      1. # VU+ STB Type IV, system code mode 2 (standard)
      2. # TV and AV belong to the TV remote
      3. begin remote
      4. name VUplus_STB_typeIV_mode2
      5. bits 16
      6. flags RC6|CONST_LENGTH
      7. eps 30
      8. aeps 100
      9. header 2713 853
      10. one 465 419
      11. zero 465 419
      12. pre_data_bits 21
      13. pre_data 0x37FAD
      14. gap 106625
      15. toggle_bit_mask 0x0
      16. rc6_mask 0x100000000
      17. begin codes
      18. KEY_MUTE 0x6FF2 # Mute
      19. KEY_POWER 0xEFF3 # STB On/Off
      20. KEY_REWIND 0x6FD6 # Fast rewind
      21. KEY_PLAY 0xEFD2 # Play/Pause
      22. KEY_PAUSE 0x6FD2 # Play/Pause
      23. KEY_FORWARD 0xEFD7 # Fast forward
      24. KEY_RECORD 0x6FC8 # Record
      25. KEY_STOP 0xEFCE # Stop
      26. KEY_PVR 0x6FB6 # List of recordings
      27. KEY_TV 0xEF1B # List of TV channels
      28. KEY_AUDIO 0x6F1A # Audio options
      29. KEY_RADIO 0xEF0D # Radio channels
      30. KEY_SUBTITLE 0x6FC3 # Subtitles
      31. KEY_HELP 0xEF7E # Help
      32. KEY_EPG 0x6F33 # EPG
      33. KEY_MENU 0xEFAB # Menu
      34. KEY_EXIT 0x6FAA # Exit
      35. KEY_VOLUMEUP 0xEFEF # Volume up
      36. KEY_VOLUMEDOWN 0x6FEE # Volume down
      37. KEY_OK 0xEFA3 # OK
      38. KEY_LEFT 0x6FA5 # Navigation left
      39. KEY_UP 0xEFA7 # Navigation up
      40. KEY_RIGHT 0x6FA4 # Navigation right
      41. KEY_DOWN 0xEFA6 # Navigation down
      42. KEY_CHANNELUP 0x6FDF # Channel up
      43. KEY_CHANNELDOWN 0xEFDE # Channel down
      44. KEY_RED 0x6F92 # Red
      45. KEY_GREEN 0xEF91 # Green
      46. KEY_YELLOW 0x6F90 # Yellow
      47. KEY_BLUE 0xEF8F # Blue
      48. KEY_NUMERIC_1 0x6FFE # 1
      49. KEY_NUMERIC_2 0xEFFD # 2
      50. KEY_NUMERIC_3 0x6FFC # 3
      51. KEY_NUMERIC_4 0x6FFB # 4
      52. KEY_NUMERIC_5 0xEFFA # 5
      53. KEY_NUMERIC_6 0x6FF9 # 6
      54. KEY_NUMERIC_7 0xEFF8 # 7
      55. KEY_NUMERIC_8 0x6FF7 # 8
      56. KEY_NUMERIC_9 0xEFF6 # 9
      57. KEY_NUMERIC_0 0x6FFF # 0
      58. KEY_PREVIOUS 0xEF44 # Zap history previous
      59. KEY_NEXT 0x6F43 # Zap history next
      60. end codes
      61. end remote
      Alles anzeigen

      Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von Mar5 ()