Advertisement
Guest User

Niklas-P

a guest
Jan 30th, 2010
1,246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.65 KB | None | 0 0
  1. #
  2. # brand: HP
  3. # model no. of remote control: TSGH-IR01
  4. # devices being controlled by this remote: HP Slimline S3100y
  5. #
  6. # RC-6 config file
  7. #
  8. # source: http://home.hccnet.nl/m.majoor/projects_remote_control.htm
  9. # http://home.hccnet.nl/m.majoor/pronto.pdf
  10. #
  11. # used by: Philips
  12. #
  13. #########
  14. #
  15. # Philips Media Center Edition remote control
  16. # For use with the USB MCE ir receiver
  17. #
  18. # Dan Conti dconti|acm.wwu.edu
  19. #
  20. # Updated with codes for MCE 2005 Remote additional buttons
  21. # *, #, Teletext, Red, Green, Yellow & Blue Buttons
  22. # Note: TV power button transmits no code until programmed.
  23. # Updated 12th September 2005
  24. # Graham Auld - mce|graham.auld.me.uk
  25. #
  26. # Radio, Print, RecTV are only available on the HP Media Center remote control
  27. #
  28. #
  29. # Updated with codes for MCE 2007 Remote additional buttons
  30. # Visualization, Aspect, SlideShow, Eject
  31. # Note:
  32. # Renamed some buttons: DVD->DVDMenu, More->MoreInfo, Star->Asterisk, Hash->Pound
  33. # Note:
  34. # Blue, Yellow, Green, Red, and Teletext buttons do not exist on the HP remote
  35.  
  36. begin remote
  37.  
  38. name mceusb
  39. bits 16
  40. flags RC6|CONST_LENGTH
  41. eps 30
  42. aeps 100
  43.  
  44. header 2667 889
  45. one 444 444
  46. zero 444 444
  47. pre_data_bits 21
  48. pre_data 0x37FF0
  49. gap 105000
  50. toggle_bit 22
  51. rc6_mask 0x100000000
  52.  
  53.  
  54. begin codes
  55.  
  56. #unused by HP remote
  57. Blue 0x00007ba1
  58. Yellow 0x00007ba2
  59. Green 0x00007ba3
  60. Red 0x00007ba4
  61. Teletext 0x00007ba5
  62.  
  63. #ba6 - bae unused
  64. BA6 0x00007ba6
  65. BA7 0x00007ba7
  66. BA8 0x00007ba8
  67. BA9 0x00007ba9
  68. BAA 0x00007baa
  69. BAB 0x00007bab
  70. BAC 0x00007bac
  71. BAD 0x00007bad
  72. BAE 0x00007bae
  73.  
  74. Radio 0x00007baf
  75. Print 0x00007bb1
  76.  
  77. #bb2 - bb4 unused
  78. BB2 0x00007bb2
  79. BB3 0x00007bb3
  80. BB4 0x00007bb4
  81.  
  82. Videos 0x00007bb5
  83. Pictures 0x00007bb6
  84. RecTV 0x00007bb7
  85. Music 0x00007bb8
  86. TV 0x00007bb9
  87.  
  88. #bba - bbf unused
  89. BBA 0x00007bba
  90. BBB 0x00007bbb
  91. BBC 0x00007bbc
  92. BBD 0x00007bbd
  93. BBE 0x00007bbe
  94. BBF 0x00007bbf
  95. #bc1 - bca unused
  96. BC1 0x00007bc1
  97. BC2 0x00007bc2
  98. BC3 0x00007bc3
  99. BC4 0x00007bc4
  100. BC5 0x00007bc5
  101. BC6 0x00007bc6
  102. BC7 0x00007bc7
  103. BC8 0x00007bc8
  104. BC9 0x00007bc9
  105. BCA 0x00007bca
  106.  
  107. Eject 0x00007bcb
  108. SlideShow 0x00007bcc
  109. Visualization 0x00007bcd
  110.  
  111. #bce - bcf unused
  112. BCE 0x00007bce
  113. BCF 0x00007bcf
  114. #bd1 - bd7 unused
  115. BD1 0x00007bd1
  116. BD2 0x00007bd2
  117. BD3 0x00007bd3
  118. BD4 0x00007bd4
  119. BD5 0x00007bd5
  120. BD6 0x00007bd6
  121. BD7 0x00007bd7
  122.  
  123. Aspect 0x00007bd8
  124. Guide 0x00007bd9
  125. LiveTV 0x00007bda
  126. DVD 0x00007bdb
  127. #NoGap
  128. Back 0x00007bdc
  129. OK 0x00007bdd
  130. Right 0x00007bde
  131. Left 0x00007bdf
  132. Down 0x00007be0
  133. Up 0x00007be1
  134. #NoGap
  135. Star 0x00007be2
  136. Hash 0x00007be3
  137. #NoGap
  138. Replay 0x00007be4
  139. Skip 0x00007be5
  140. Stop 0x00007be6
  141. Pause 0x00007be7
  142. Record 0x00007be8
  143. Play 0x00007be9
  144. Rewind 0x00007bea
  145. Forward 0x00007beb
  146. #NoGap
  147. ChanDown 0x00007bec
  148. ChanUp 0x00007bed
  149. VolDown 0x00007bee
  150. VolUp 0x00007bef
  151. #NoGap
  152. More 0x00007bf0
  153. Mute 0x00007bf1
  154. Home 0x00007bf2
  155. Power 0x00007bf3
  156. #NoGap
  157. Enter 0x00007bf4
  158. Clear 0x00007bf5
  159. #NoGap
  160. Nine 0x00007bf6
  161. Eight 0x00007bf7
  162. Seven 0x00007bf8
  163. Six 0x00007bf9
  164. Five 0x00007bfa
  165. Four 0x00007bfb
  166. Three 0x00007bfc
  167. Two 0x00007bfd
  168. One 0x00007bfe
  169. Zero 0x00007bff
  170. end codes
  171.  
  172. end remote
  173. #
  174. # this config file was automatically generated
  175. # using lirc-0.8.4a(default) on Mon Feb 23 23:55:04 2009
  176. #
  177. # contributed by
  178. #
  179. # brand: Hauppauge
  180. # model no. of remote control:
  181. # devices being controlled by this remote: PVR-150 Remote (MCE kit)
  182. # SMK dongle 0609:031d
  183. #
  184.  
  185. begin remote
  186.  
  187. name mceusb_hauppauge
  188. bits 13
  189. flags RC6|CONST_LENGTH
  190. eps 30
  191. aeps 100
  192.  
  193. header 2674 870
  194. one 455 427
  195. zero 455 427
  196. pre_data_bits 24
  197. pre_data 0x1BFF82
  198. gap 106288
  199. min_repeat 1
  200. toggle_bit_mask 0x8000
  201. rc6_mask 0x100000000
  202.  
  203. begin codes
  204. TV 0x1BB9
  205. Music 0x1BB8
  206. Pictures 0x1BB6
  207. Videos 0x1BB5
  208. Power 0x1BF3
  209. Stop 0x1BE6
  210. Record 0x1BE8
  211. Pause 0x1BE7
  212. Play 0x1BE9
  213. Rewind 0x1BEA
  214. Foward 0x1BEB
  215. Replay 0x1BE4
  216. Skip 0x1BE5
  217. Back 0x1BDC
  218. More 0x1BF0
  219. Up 0x1BE1
  220. Left 0x1BDF
  221. Right 0x1BDE
  222. OK 0x1BDD
  223. Down 0x1BE0
  224. VolUp 0x1BEF
  225. VolDown 0x1BEE
  226. Home 0x1BF2
  227. ChanDown 0x1BED
  228. ChanUp 0x1BEC
  229. Mute 0x1BF1
  230. RecTV 0x1BB7
  231. Guide 0x1BD9
  232. LiveTV 0x1BDA
  233. DVD 0x1BDB
  234. One 0x1BFE
  235. Two 0x1BFD
  236. Three 0x1BFC
  237. Four 0x1BFB
  238. Five 0x1BFA
  239. Six 0x1BF9
  240. Seven 0x1BF8
  241. Eight 0x1BF7
  242. Nine 0x1BF6
  243. Star 0x1BE2
  244. Zero 0x1BFF
  245. Hash 0x1BE3
  246. Clear 0x1BF5
  247. Enter 0x1BF4
  248. end codes
  249.  
  250. end remote
  251.  
  252.  
  253. #
  254. # this config file was automatically generated
  255. # using lirc-0.8.4a(default) on Tue Mar 10 19:27:09 2009
  256. #
  257. # contributed by
  258. #
  259. # brand: SIIG Vista MCE remote
  260. # model no. of remote control:
  261. # devices being controlled by this remote:
  262. #
  263.  
  264. begin remote
  265.  
  266. name vista_mce
  267. bits 16
  268. flags RC6
  269. eps 30
  270. aeps 100
  271.  
  272. header 2654 889
  273. one 427 427
  274. zero 427 427
  275. pre_data_bits 21
  276. pre_data 0x37FF0
  277. gap 69850
  278. toggle_bit_mask 0x8000
  279. rc6_mask 0x100000000
  280.  
  281. begin codes
  282. Power 0xEBF3
  283. Pictures 0x6BB6
  284. Radio 0xEBAF
  285. Videos 0x6BB5
  286. Music 0xEBB8
  287. Rec 0x6BE8
  288. Pause 0xEBE7
  289. Stop 0x6BE6
  290. Skipback 0xEBE4
  291. Play 0x6BE9
  292. Skipfwd 0xEBE5
  293. Rwd 0x6BEA
  294. Fwd 0xEBEB
  295. Start 0x6BF2
  296. Back 0xEBDC
  297. More 0x6BF0
  298. Volup 0xEBEF
  299. Voldown 0x6BEE
  300. Chup 0xEBED
  301. Chdown 0x6BEC
  302. Up 0xEBE1
  303. Down 0x6BE0
  304. Left 0xEBDF
  305. Right 0x6BDE
  306. Mute 0xEBF1
  307. Rectv 0x6BB7
  308. Guide 0xEBD9
  309. Livetv 0x6BDA
  310. Dvdmenu 0xEBDB
  311. 1 0x6BFE
  312. 2 0xEBFD
  313. 3 0x6BFC
  314. 4 0xEBFB
  315. 5 0x6BFA
  316. 6 0xEBF9
  317. 7 0x6BF8
  318. 8 0xEBF7
  319. 9 0x6BF6
  320. * 0xEBE2
  321. 0 0x6BFF
  322. # 0xEBE3
  323. Clear 0x6BF5
  324. Enter 0xEBF4
  325. end codes
  326.  
  327. end remote
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement