1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 20:49:49 +04:00

Add support for Sony RM-SC3 remote control (#3724)

Commands:
Power
Vol_up
Vol_dn
Play
Pause

Co-authored-by: hedger <hedger@users.noreply.github.com>
This commit is contained in:
IRecabarren
2024-06-25 08:40:40 -04:00
committed by GitHub
parent 4cf98867a0
commit 653423145b

View File

@@ -475,3 +475,34 @@ type: parsed
protocol: NEC protocol: NEC
address: 00 00 00 00 address: 00 00 00 00
command: 85 00 00 00 command: 85 00 00 00
#
#Sony audio remote RM-SC3
name: Power
type: parsed
protocol: SIRC
address: 10 00 00 00
command: 15 00 00 00
#
name: Vol_up
type: parsed
protocol: SIRC
address: 10 00 00 00
command: 12 00 00 00
#
name: Vol_dn
type: parsed
protocol: SIRC
address: 10 00 00 00
command: 13 00 00 00
#
name: Play
type: parsed
protocol: SIRC20
address: 3A 07 00 00
command: 32 00 00 00
#
name: Pause
type: parsed
protocol: SIRC20
address: 3A 07 00 00
command: 39 00 00 00