Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Apple vendor ID #486

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions include/cectypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -831,6 +831,7 @@ typedef enum cec_vendor_id
CEC_VENDOR_ONKYO = 0x0009B0,
CEC_VENDOR_MEDION = 0x000CB8,
CEC_VENDOR_TOSHIBA2 = 0x000CE7,
CEC_VENDOR_APPLE = 0x0010FA,
CEC_VENDOR_PULSE_EIGHT = 0x001582,
CEC_VENDOR_HARMAN_KARDON2 = 0x001950,
CEC_VENDOR_GOOGLE = 0x001A11,
Expand Down
1 change: 1 addition & 0 deletions src/LibCecSharp/CecSharpTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -792,6 +792,7 @@ namespace CecSharp
Onkyo = 0x0009B0,
Medion = 0x000CB8,
Toshiba2 = 0x000CE7,
Apple = 0x0010FA,
PulseEight = 0x001582,
HarmanKardon2 = 0x001950,
Google = 0x001A11,
Expand Down
2 changes: 2 additions & 0 deletions src/libcec/CECTypeUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,8 @@ namespace CEC
case CEC_VENDOR_TOSHIBA:
case CEC_VENDOR_TOSHIBA2:
return "Toshiba";
case CEC_VENDOR_APPLE:
return "Apple";
case CEC_VENDOR_AKAI:
return "Akai";
case CEC_VENDOR_AOC:
Expand Down