A .net class library to facilitate HDMI-CEC communications.
This library can be used to create and parse HDMI Version 1.4 compliant CEC-messages for communication with HDMI-CEC devices. It can be used on top of other communication protocols and libraries which support CEC hardware, such as kwikwai HDMI-CEC AV-controllers or Pulse-Eight's USB-CEC adapter.
Install-Package AleRoe.CecSharp
CecSharp provides an object model for dealing with HDMI-CEC messages as well as emulating a HDMI-CEC device. The static CecMessageBuilder
class can be used to create arbitrary HDMI-CEC frames which can be used to control devices on the HDMI-CEC bus.
The CecDevice
class represents a HDMI-CEC enabled device capable of responding to incoming HDMI-CEC messages via the ProcessCecMessage
method.
To emulate a HDMI-CEC device, create a new CecDevice
instance, specifying the device type, name, vendor, physical- and logical address. Use the ProcessCecMessage()
and ToCec()
methods to get the appropriate response depending on the device settings. Not all input messages will generate a response (like UserControlPressed, UserControlReleased or StandBy and messages not intended for this device) and instead return CecMessage.None
.
// create device
var device = new CecDevice(DeviceType.PlaybackDevice, "OsdName", 99999, PhysicalAddress.Parse("2.1.0.0"), LogicalAddress.Tuner3);
// create a CecMessage from an incoming CEC-frame
// i.e. a request to a device to return its physical address. (Directly addressed)
var frame = "07:83";
var message = CecMessage.Parse(frame);
// process the message to get the appropriate response
var response = device.ProcessCecMessage(message).ToCec();
// returns a ReportPhysicalAddress broadcast message which can be sent as a response
// response = "7F:84:21:00:04"
In order to create arbitrary CEC-frames, use the static CecMessageBuilder
class to build CecMessage
structs.
public static class CecMessageBuilder
{
public static CecMessage GivePhysicalAddress(LogicalAddress source, LogicalAddress destination);
public static CecMessage ReportPhysicalAddress(LogicalAddress source, DeviceType deviceType, PhysicalAddress physicalAddress);
public static CecMessage ReportAudioStatus(LogicalAddress source, LogicalAddress destination, AudioMuteStatus status, int value);
public static CecMessage SetSystemAudioMode(LogicalAddress source, LogicalAddress destination, SystemAudioStatus status);
public static CecMessage DeviceVendorId(LogicalAddress source, int vendorId);
public static CecMessage SetOsdName(LogicalAddress source, LogicalAddress destination, string osdName);
public static CecMessage MenuStatus(LogicalAddress source, LogicalAddress destination, MenuStatus state);
public static CecMessage InactiveSource(LogicalAddress source, PhysicalAddress physicalAddress);
public static CecMessage ActiveSource(LogicalAddress source, PhysicalAddress physicalAddress);
public static CecMessage FeatureAbort(LogicalAddress source, LogicalAddress destination, Command opCode, AbortReason reason);
public static CecMessage CecVersion(LogicalAddress source, LogicalAddress destination, CecVersion version);
public static CecMessage ReportPowerStatus(LogicalAddress source, LogicalAddress destination, PowerStatus status);
public static CecMessage Polling(LogicalAddress source);
public static CecMessage SetMenuLanguage(LogicalAddress source, [NotNull] string language);
public static CecMessage GetMenuLanguage(LogicalAddress source, LogicalAddress destination);
public static CecMessage SetOSDString(LogicalAddress source, DisplayControl displayControl, [NotNull] string osdString);
public static CecMessage GiveOsdName(LogicalAddress source, LogicalAddress destination);
public static CecMessage RequestActiveSource(LogicalAddress source);
public static CecMessage SetStreamPath(PhysicalAddress physicalAddress);
public static CecMessage RoutingChange(LogicalAddress source, PhysicalAddress originalAddress, PhysicalAddress newAddress);
public static CecMessage RoutingInformation(LogicalAddress source, PhysicalAddress physicalAddress);
public static CecMessage GiveDevicePowerStatus(LogicalAddress source, LogicalAddress destination);
public static CecMessage GiveDeviceVendorId(LogicalAddress source, LogicalAddress destination);
public static CecMessage VendorCommand(LogicalAddress source, LogicalAddress destination, byte[] data);
public static CecMessage VendorCommand(LogicalAddress source, LogicalAddress destination, string data);
public static CecMessage VendorCommandWithId(LogicalAddress source, LogicalAddress destination, int vendorId, byte[] data);
public static CecMessage VendorCommandWithId(LogicalAddress source, LogicalAddress destination, int vendorId, string data);
public static CecMessage VendorRemoteButtonDown(LogicalAddress source, LogicalAddress destination, byte[] data);
public static CecMessage VendorRemoteButtonDown(LogicalAddress source, LogicalAddress destination, string data);
public static CecMessage VendorRemoteButtonUp(LogicalAddress source, LogicalAddress destination);
public static CecMessage Standby(LogicalAddress source, LogicalAddress destination);
public static CecMessage UserControlPressed(LogicalAddress source, LogicalAddress destination, UiCommand command);
public static CecMessage UserControlReleased(LogicalAddress source, LogicalAddress destination);
}
Use the .ToCec()
extension method to get the actual CEC-Message.
using AleRoe.CecSharp;
using AleRoe.CecSharp.Extensions;
var message = CecMessageBuilder.ActiveSource(LogicalAddress.Unregistered, PhysicalAddress.Parse("2.0.0.0"));
var cec = message.ToCec();
// cec = "FF:82:20:00"
Library now targets net 8.0 only.
Support for netstandard 2.1 removed. Library now targets net 7.0 only.
CecSharp now fully supports the following HDMI-CEC features and their related commands for both CecMessageBuilder
and ProcessCecMessage
(where applicable):
- System Information
- OSD Display
- Device OSD Name Transfer
- Device Power Status
- Routing Control
- Vendor Specific Command
- System Standby
- Device Menu Control
- Abort
Please let me know if you are using this library and have any suggestions or questions.