|
I've been working on a VB.NET Ocelot controller component for a while. Right now it's controlling my satellite receiver from a custom PVR application I wrote a while back. I only have a few Ocelot commands coded, but if there is any interest, I'd be happy to share the component and possibly build on the command list.
Keep in mind this isn't a full blown application, simply a .dll component that you would use in your custom .NET application.
'pseudo code example Dim objOcelotController As New OcelotController 'Changes the channel to 123 objOcelotController.ChangeChannel(123) objOcelotController = Nothing
I do have a small interface that uses the component to store IR commands in the Ocelot. I used it mainly to program the 0-9 from my satellite remote.
|