Bose v35 Lifestyle
Ant
Posts: 54
Hello,
Does anyone have a module for control a Bose V35 Lifestyle, it uses a 3.5mm to serial into the Data Port at the rear of the unit.
I received the protocol from Bose and thus far have tried
- Setting the Baud to 19200
- Sending various Query and Set commands to the device.
It responds with what looks like error messages.
Ex. $07$82$01$$FE$FF$01$04$07$01$00
The House Code is 15 and Room Code is B.
Is there anywhere i need to setup the console for serial comms? I can't find anything in the setup menu.
Thanks,
Ant
Does anyone have a module for control a Bose V35 Lifestyle, it uses a 3.5mm to serial into the Data Port at the rear of the unit.
I received the protocol from Bose and thus far have tried
- Setting the Baud to 19200
- Sending various Query and Set commands to the device.
It responds with what looks like error messages.
Ex. $07$82$01$$FE$FF$01$04$07$01$00
The House Code is 15 and Room Code is B.
Is there anywhere i need to setup the console for serial comms? I can't find anything in the setup menu.
Thanks,
Ant
0
Comments
Protocol is attached
I've tried sending
TO: KP %26$0D
RX: $07$82$01%$FE$FF$01$04$07$01$00
TO: $0b,$00,$01,$04,$02,$02,$2c,$01,$00,$0e,$00,$2d
RX: $07$82$01,$FE$FF$01$04$07$01$00
TO: $0b$00$01$04$b3$01$2c$01$0F$01$9F
RX: $07$82$01$$FE$FF$01$04$07$01$00
TO: $05$00$04$01$00
RX: $07$82$01$$FE$FF$01$04$07$01$00
The House Code is 15 and Room Code is B.
Not sure what i'm doing wrong
I've re-attached.
It responds with what looks like error messages.
Here are samples of TX and RX Msgs thus far:
TO: KP %26$0D
RX: $07$82$01%$FE$FF$01$04$07$01$00
TO: $0b,$00,$01,$04,$02,$02,$2c,$01,$00,$0e,$00,$2d
RX: $07$82$01,$FE$FF$01$04$07$01$00
TO: $0b$00$01$04$b3$01$2c$01$0F$01$9F
RX: $07$82$01$$FE$FF$01$04$07$01$00
TO: $05$00$04$01$00
RX: $07$82$01$$FE$FF$01$04$07$01$00
Thanks for your help.
I still don't see it??? Perhaps it a file type not allowed? what kind of doc is it?
Does appear to be an error for PACKET_TIMEOUT followed by
$04$07$01$00
which appears to be a ready packet
Maybe it's in low power mode:
Try sending the SysRdy query:
07 00 01 1d 00 00 1b
Maybe that will give you a proper response.
I'll be back on site today and give it go and leave you know the progress
Thanks for your help. It worked. Just ensure to place to $0d when send strings from control a device ;p
Here are commands that worked for me.
cmdQZone_Src[] = {$08,$00,$01,$0a,$00,$18,$18,$03,$0d} // Query Main Room Current source
cmdQZone_Vol[] = {$07,$00,$01,$15,$00,$1e,$0d,$0d} // Query Main Room Current Volume
cmdVol_Set_GA[] = {$07,$00,$01,$15,$01,$46,$54,$0d} // Set Volume to 70%
cmdVol_Set_RmSrc[] = {$07,$00,$01,$15,$01,$19,$0b,$0d} // Set Volume to 25%
cmdAmp_IP_1[] = {$0b,$00,$01,$04,$B3,$00,$2c,$01,$00,$00,$90,$0d} // Select Inputs
cmdAmp_IP_2[] = {$0b,$00,$01,$04,$12,$00,$2c,$01,$00,$00,$31,$0d}
cmdAmp_IP_3[] = {$0b,$00,$01,$04,$13,$00,$2c,$01,$00,$00,$30,$0d}
cmdAmp_IP_4[] = {$0b,$00,$01,$04,$15,$00,$2c,$01,$00,$00,$36,$0d}
cmdAmp_Pwr[] = {$0b,$00,$01,$04,$4C,$00,$2c,$01,$00,$00,$6F,$0d}
cmdVol_Mute[] = {$0b,$00,$01,$04,$01,$00,$2c,$01,$00,$00,$22,$0d}
cmdVol_Down[] = {$0b,$00,$01,$04,$02,$00,$2c,$01,$00,$00,$21,$0d}
cmdVol_Up[] = {$0b,$00,$01,$04,$03,$00,$2c,$01,$00,$00,$20,$0d}
Thanks again