Home AMX User Forum AMX General Discussion

Sony PFM42X1

Can someone post some example command set of this device? I need an example of a control command, the query commands in the documentation work but they have no example of a command. Should look something like: Power on: $8C, $00, $00, $01, $01 - does not work.

Comments

  • kbeattyAMXkbeattyAMX Posts: 358
    Sony_Command[1]= "$8C,$00,$00,$02,$01,$8F" //PON
    Sony_Command[2]= "$8C,$00,$00,$02,$00,$8E" //POF
    Sony_Command[3]= "$8C,$00,$01,$02,$01,$90" //Standby ON
    Sony_Command[4]= "$8C,$00,$01,$02,$00,$8F" //Standby OFF
    Sony_Command[5]= "$8C,$00,$02,$03,$05,$01,$97" //RB1
    Sony_Command[6]= "$8C,$00,$02,$03,$05,$01,$97" //RB2
    Sony_Command[7]= "$8C,$00,$02,$03,$02,$01,$94" //VID1
    Sony_Command[8]= "$8C,$00,$02,$03,$02,$02,$95" //VID2
    Sony_Command[9]= "$8C,$00,$02,$03,$02,$03,$96" //VID3 
    

    I think you need to send command 3 before sending command 2. I noticed that you were missing the checksum.
  • jgreer9514jgreer9514 Posts: 23
    Checksum

    The document didn't mention anything about a checksum. The more I work in AV the more crapy documentation I come across.
  • kbeattyAMXkbeattyAMX Posts: 358
    jgreer9514 wrote: »
    The document didn't mention anything about a checksum. The more I work in AV the more crapy documentation I come across.

    Sony commands tend to be similar between different devices and the code you posted at first looked close to the commands for the Bravia XBR5. Yep no check sum in your docs.

    You had... Power on: $8C, $00, $00, $01, $01

    I wonder if you have to send the Execute Judge command $89, $00, $00, $FF, $FF.
Sign In or Register to comment.