Home AMX User Forum NetLinx Studio

Sony BluRay Protocol (BDP-BX59)?

A client picked up a Sony BDP-BX59 BluRay player at Costco or some big-box store. Does anyone know if this is controllable by IP and if there's a protocol document anywhere? I need to write a module for it.
Thanks!
John

Comments

  • I'm guessing it is IP controllable... I think I found the protocol here in case anyone else needs it:
    http://files.remotecentral.com/view/77-235-1/sony_bdp-cx7000es_blu-ray_disc_player.html

    So now the fun begins :)
  • John GonzalesJohn Gonzales Posts: 609
    Update:
    I didn't get a chance to test network controls on this device, so I just tossed IR control on it until I have access to the device.

    Here's the IR control info if anyone needs a simple way to control this BDP or similar. The code below assumes you've aligned your TP channels with the IR channels. The irl file (SONY0593.IRL) is in the AMX database.

    --John
    BUTTON_EVENT[tpBDP_SONY,0]		//Button Press - ANY
        {
        PUSH:
        PULSE[dvBDP_SONY,button.input.channel]
        }
    (*
    IR FIle: SONY0593.IRL
    Device:  SONY BDP-S790
    Remote:  RMT-B122A
    Compatible with BDP-BX59
    
    Match the Touchpanel Channels to the functions below:
    CH	FUNCTION
    1 	Play  
    2 	Stop  
    3 	Pause  
    4 	Next >>|  
    5 	Prev |<<  
    6 	Scan >>  
    7 	Scan <<  
    9 	Power  
    10 	0  
    11 	1  
    12 	2  
    13 	3  
    14 	4  
    15 	5  
    16 	6  
    17 	7  
    18 	8  
    19 	9  
    44 	Top Menu  
    45 	Cursor ^  
    46 	Cursor v  
    47 	Cursor <  
    48 	Cursor >  
    49 	Enter  
    54 	Return  
    57 	Subtitle  
    58 	Display  
    80 	Open/Close  
    89 	Audio  
    111	Red  
    112	Green  
    113 Blue  
    114 Yellow  
    115 Pop Up Menu  
    116 Input  
    117 Home  
    118 Options  
    119 Netflix  
    120 SEN  
    121 3D  
    *)
    
Sign In or Register to comment.