BraviaIRCCControl 1.0.2

dotnet add package BraviaIRCCControl --version 1.0.2
NuGet\Install-Package BraviaIRCCControl -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BraviaIRCCControl" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BraviaIRCCControl --version 1.0.2
#r "nuget: BraviaIRCCControl, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install BraviaIRCCControl as a Cake Addin
#addin nuget:?package=BraviaIRCCControl&version=1.0.2

// Install BraviaIRCCControl as a Cake Tool
#tool nuget:?package=BraviaIRCCControl&version=1.0.2

Build Status NuGet Package NuGet Downloads Donate

BraviaIRCCControl

Simple .Net wrapper to control Sony Bravia devices through IRCC

Contribution

If you find this package useful, please make a gift on Paypal : https://www.paypal.me/roddone

Help

Do pull requests to implement more features !

Prerequisites

  1. Go in your TV settings and enable IP Control : Network > Home Network Setup > IP Control > Simple IP Control.
  2. Set Authentication to "Normal and Pre-shared Key"
  3. Choose a Pre-shared key.

The Pre-Shared Key will be asked when connecting.

HowTo

Instanciate a "BraviaIRCCControl.IRCCController", and simply use the "Send" method with an IRCCCode:

	IRCCController control = new IRCCController(hostname /*, port = 80, pinCode = "Pre-Shared-Key"*/);
	await control.Send(IRCCCodes.VolumeUp);
	await control.Send(IRCCCodes.VolumeDown);
	await control.Send(IRCCCodes.HDMI1);
	//etc.

Extensions

There are extensions that allows to use some commands in a more readable way, to use them juste include using BraviaIRCCControl.Extensions; For example :

	await control.VolumeUp();
	await control.VolumeDown();
	await control.Play();
	await control.Pause();
	//etc.

For the moment there is not a lot of extensions, but you can implement others via pull request.

Extensions (bis)

You can directly use extensions methods on the "IRCCCodes" Enum. To do so, you have to initialize extensions with the controller you want to use, and then call the send method on the enum valu you want to send :

	IRCCController control = new IRCCController(hostname, pinCode: pin);
	IRCCCodesExtension.InitializeController(control);
	
	await IRCCCodes.VolumeUp.Send();
	await IRCCCodes.VolumeDown.Send();
	await IRCCCodes.HDMI1.Send();

	//use another controller just one time 
	await IRCCCodes.HDMI1.Send(anotherController);
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 is compatible.  net461 was computed.  net462 was computed.  net463 was computed.  net47 is compatible.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.5

    • No dependencies.
  • .NETFramework 4.6

    • No dependencies.
  • .NETFramework 4.7

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 1,095 4/7/2018
1.0.1 984 4/3/2018
1.0.0 966 3/24/2018

Add enum extensions