I was wondering if anyone has the RS232 commands needed for the Media button and the control buttons (play, pause, stop, rewind, fastforward etc)? I have been searching high and low and attempted ever combination I can think of but no luck...
The TV I have is a UN40EH6000 but I suspect it will be the same for any Samsung TV which uses these buttons...
Best Regards
Fredrik
p.s. I'll paste all my other commands I have below which I stole from a Crestron module for people if they are interested as I haven't seen all of of these on public forums. You'll have to calculate the checksum yourself though by taking 0x100 minus all the values in the command (so the checksum for Power On would be 0x100-0x08-0x22 = 0xD6)...
Code: Select all
Power_On 0x08 0x22 0x00 0x00 0x00 0x02
Power_Off 0x08 0x22 0x00 0x00 0x00 0x01
Power_Toggle 0x08 0x22 0x00 0x00 0x00 0x00
Mute_Toggle 0x08 0x22 0x02 0x00 0x00 0x00
Channel_Up_Send 0x08 0x22 0x03 0x00 0x01 0x00
Channel_Down_Send 0x08 0x22 0x03 0x00 0x02 0x00
Volume_Up_Indirect_Send 0x08 0x22 0x01 0x00 0x01 0x00
Volume_Down_Indirect_Send 0x08 0x22 0x01 0x00 0x02 0x00
Input_TV 0x08 0x22 0x0A 0x00 0x00 0x00
Input_AV_1 0x08 0x22 0x0A 0x00 0x01 0x00
Input_AV_2 0x08 0x22 0x0A 0x00 0x01 0x01
Input_AV_3 0x08 0x22 0x0A 0x00 0x01 0x02
Input_S-Video_1 0x08 0x22 0x0A 0x00 0x02 0x00
Input_S-Video_2 0x08 0x22 0x0A 0x00 0x02 0x01
Input_S-Video_3 0x08 0x22 0x0A 0x00 0x02 0x02
Input_Component_1 0x08 0x22 0x0A 0x00 0x03 0x00
Input_Component_2 0x08 0x22 0x0A 0x00 0x03 0x01
Input_Component_3 0x08 0x22 0x0A 0x00 0x03 0x02
Input_PC_1 0x08 0x22 0x0A 0x00 0x04 0x00
Input_PC_2 0x08 0x22 0x0A 0x00 0x04 0x01
Input_PC_3 0x08 0x22 0x0A 0x00 0x04 0x02
Input_HDMI_1 0x08 0x22 0x0A 0x00 0x05 0x00
Input_HDMI_2 0x08 0x22 0x0A 0x00 0x05 0x01
Input_HDMI_3 0x08 0x22 0x0A 0x00 0x05 0x02
Input_HDMI_4 0x08 0x22 0x0A 0x00 0x05 0x03
Input_DVI_1 0x08 0x22 0x0A 0x00 0x06 0x00
Input_DVI_2 0x08 0x22 0x0A 0x00 0x06 0x01
Input_DVI_3 0x08 0x22 0x0A 0x00 0x06 0x02
Mode_Dynamic(Entertain) 0x08 0x22 0x0B 0x00 0x00 0x00
Mode_Standard 0x08 0x22 0x0B 0x00 0x00 0x01
Mode_Movie 0x08 0x22 0x0B 0x00 0x00 0x02
Mode_Natural 0x08 0x22 0x0B 0x00 0x00 0x03
Mode_CAL-NIGHT 0x08 0x22 0x0B 0x00 0x00 0x04
Mode_CAL-DAY 0x08 0x22 0x0B 0x00 0x00 0x05
Mode_BD_Wise 0x08 0x22 0x0B 0x00 0x00 0x06
Aspect_16x9 0x08 0x22 0x0B 0x0A 0x01 0x00
Aspect_Zoom_1 0x08 0x22 0x0B 0x0A 0x01 0x01
Aspect_Zoom_2 0x08 0x22 0x0B 0x0A 0x01 0x02
Aspect_Wide_Fit 0x08 0x22 0x0B 0x0A 0x01 0x03
Aspect_4x3 0x08 0x22 0x0B 0x0A 0x01 0x04
Aspect_Screen_Fit 0x08 0x22 0x0B 0x0A 0x01 0x05
Aspect_Smart_View_I 0x08 0x22 0x0B 0x0A 0x01 0x06
Aspect_Smart_View_II 0x08 0x22 0x0B 0x0A 0x01 0x07
Motion_Lighting_On 0x08 0x22 0x0B 0x07 0x11 0x01
Motion_Lighting_Off 0x08 0x22 0x0B 0x07 0x11 0x00
LED_Motion_Plus_Off 0x08 0x22 0x0B 0x0A 0x07 0x00
LED_Motion_Plus_On(Normal) 0x08 0x22 0x0B 0x0A 0x07 0x01
LED_Motion_Plus_Cinema 0x08 0x22 0x0B 0x0A 0x07 0x02
LED_Motion_Plus_Ticker 0x08 0x22 0x0B 0x0A 0x07 0x03
Auto_Motion_Plus_Off 0x08 0x22 0x0B 0x0A 0x06 0x00
Auto_Motion_Plus_Clear 0x08 0x22 0x0B 0x0A 0x06 0x01
Auto_Motion_Plus_Standard 0x08 0x22 0x0B 0x0A 0x06 0x02
Auto_Motion_Plus_Smooth 0x08 0x22 0x0B 0x0A 0x06 0x03
Auto_Motion_Plus_Custom 0x08 0x22 0x0B 0x0A 0x06 0x04
*3D_Mode_Off 0x08 0x22 0x0B 0x0C 0x00 0x00
*3D_Mode_2D->3D 0x08 0x22 0x0B 0x0C 0x00 0x01
*3D_Mode_Side_By_Side 0x08 0x22 0x0B 0x0C 0x00 0x02
*3D_Mode_Top_Bottom 0x08 0x22 0x0B 0x0C 0x00 0x03
*3D_Mode_Line_By_Line 0x08 0x22 0x0B 0x0C 0x00 0x04
*3D_Mode_Vertical_Line 0x08 0x22 0x0B 0x0C 0x00 0x05
*3D_Mode_Checker_BD 0x08 0x22 0x0B 0x0C 0x00 0x06
*3D_Mode_Frame_Sequence 0x08 0x22 0x0B 0x0C 0x00 0x07
*3D_3D->2D_On 0x08 0x22 0x0B 0x0C 0x01 0x01
*3D_3D->2D_Off 0x08 0x22 0x0B 0x0C 0x01 0x00
*3D_Auto_View_Off 0x08 0x22 0x0B 0x0C 0x05 0x00
*3D_Auto_View_Message_Notice 0x08 0x22 0x0B 0x0C 0x05 0x01
*3D_Auto_View_On 0x08 0x22 0x0B 0x0C 0x05 0x02
*3D_Picture_Correction 0x08 0x22 0x0B 0x0C 0x04 0x00
Auto_Volume_Off 0x08 0x22 0x0C 0x06 0x00 0x00
Auto_Volume_Normal 0x08 0x22 0x0C 0x06 0x00 0x01
Auto_Volume_Night 0x08 0x22 0x0C 0x06 0x00 0x02
Menu 0x08 0x22 0x0D 0x00 0x00 0x1A
Up 0x08 0x22 0x0D 0x00 0x00 0x60
Down 0x08 0x22 0x0D 0x00 0x00 0x61
Left 0x08 0x22 0x0D 0x00 0x00 0x65
Right 0x08 0x22 0x0D 0x00 0x00 0x62
Enter 0x08 0x22 0x0D 0x00 0x00 0x68
Exit 0x08 0x22 0x0D 0x00 0x00 0x2D
Red 0x08 0x22 0x0D 0x00 0x00 0x6C
Green 0x08 0x22 0x0D 0x00 0x00 0x14
Yellow 0x08 0x22 0x0D 0x00 0x00 0x15
Blue 0x08 0x22 0x0D 0x00 0x00 0x16
Tools 0x08 0x22 0x0D 0x00 0x00 0x4B
Return 0x08 0x22 0x0D 0x00 0x00 0x58
Yahoo 0x08 0x22 0x0D 0x00 0x00 0x53
Info 0x08 0x22 0x0D 0x00 0x00 0x1F
Internet 0x08 0x22 0x0D 0x00 0x00 0x93