Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jlongman/a7a56241506681083d9b939828716dd6 to your computer and use it in GitHub Desktop.
Save jlongman/a7a56241506681083d9b939828716dd6 to your computer and use it in GitHub Desktop.
LIRC for Seiki TV Remote
begin remote
name seiki
bits 16
flags SPACE_ENC|CONST_LENGTH
eps 30
aeps 100
header 9046 4428
one 596 1606
zero 596 490
ptrail 596
repeat 9053 2175
pre_data_bits 16
pre_data 0x40BE
gap 107838
toggle_bit_mask 0x0
begin codes
KEY_POWER 0x629D
KEY_TV 0x28D7
KEY_SLEEP 0x8877
KEY_1 0x807F
KEY_2 0x40BF
KEY_3 0xC03F
KEY_4 0x20DF
KEY_5 0xA05F
KEY_6 0x609F
KEY_7 0xE01F
KEY_8 0x10EF
KEY_9 0x906F
KEY_0 0x00FF
KEY_MINUS 0x42BD
KEY_VOLUMEUP 0x30CF
KEY_VOLUMEDOWN 0x9867
KEY_CHANNELUP 0xF00F
KEY_CHANNELDOWN 0x5AA5
KEY_MUTE 0x32CD
KEY_MENU 0xA25D
KEY_CLOSECD 0xDA25
KEY_INFO 0xF20D
KEY_UP 0x12ED
KEY_DOWN 0xB24D
KEY_OK 0x52AD
KEY_RIGHT 0x926D
KEY_LEFT 0x728D
KEY_ENTER 0xA857
KEY_CHANNEL 0x22DD
KEY_EXIT 0xB04F
KEY_A 0xEA15
KEY_B 0x02FD
KEY_C 0xAA55
KEY_D 0x6897
KEY_PLAYPAUSE 0x6A95
KEY_REWIND 0x48B7
KEY_FASTFORWARD 0x8A75
KEY_STOP 0xE817
KEY_NEXT 0x08F7
KEY_PREVIOUS 0xCA35
KEY_INPUT_SOURCE 0xD22D
KEY_SOUND_MODE 0xC23D
KEY_PICTURE_MODE 0xE21D
KEY_FREEZE 0x02FD
KEY_FAVE 0x9A65
KEY_MTS 0x0AF5
KEY_CC 0x2AD5
end codes
end remote
@jlongman
Copy link
Author

jlongman commented Apr 1, 2017

Note this works with the Element ELUFT-551 55" 4K TV as well. Thanks author

@jlongman
Copy link
Author

jlongman commented Apr 1, 2017

Note: changing the input is missing and KEY_5 and KEY_8 are the same. This is the only repeated sequence.

@jlongman
Copy link
Author

jlongman commented Apr 1, 2017

KEY_5 0xA05F

  • all the numbers have a 0 in second position, F in last,
  • the other two numbers total F
  • try all the variations

@jlongman
Copy link
Author

jlongman commented Apr 1, 2017

KEY_827D - return to last channel

testing variations with 2 in second position, D in last.

@jlongman
Copy link
Author

jlongman commented Apr 1, 2017

This would be a lot easier if my IR receiver had arrived. :(

@jlongman
Copy link
Author

jlongman commented Apr 1, 2017

KEY_C23D - sound mode

@jlongman
Copy link
Author

jlongman commented Apr 1, 2017

KEY_D22D - input source menu

Note this starts on the current source, and will wrap the menu so there's no way to go from an unknown state to a known state - without using the USB button and then switching to a known input. Still haven't found the USB button.

@jlongman
Copy link
Author

jlongman commented Apr 1, 2017

KEY_E21D - picture mode

@jlongman
Copy link
Author

jlongman commented Apr 1, 2017

KEY_02FD - freeze frame

@jlongman
Copy link
Author

jlongman commented Apr 1, 2017

KEY_9A65 - favourite, relative, hit quickly to toggle, no way to get to known state (maybe a scan resets all?)

@jlongman
Copy link
Author

jlongman commented Apr 1, 2017

KEY_0AF5 - MTS audio track selection, toggles when selected again quickly, relative, changes per channel, no way to get to known state

@jlongman
Copy link
Author

jlongman commented Apr 1, 2017

KEY_2AD5 - closed captioning mode, toggles when selected again quickly, relative, no way to get to known state

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment