HomematicIp 1.0.3
See the version list below for details.
dotnet add package HomematicIp --version 1.0.3
NuGet\Install-Package HomematicIp -Version 1.0.3
<PackageReference Include="HomematicIp" Version="1.0.3" />
paket add HomematicIp --version 1.0.3
#r "nuget: HomematicIp, 1.0.3"
// Install HomematicIp as a Cake Addin #addin nuget:?package=HomematicIp&version=1.0.3 // Install HomematicIp as a Cake Tool #tool nuget:?package=HomematicIp&version=1.0.3
HomematicIp
This package allows to query the HomematicIp REST and WebSocket endpoint.
Installation
Install-Package HomematicIp
Example Usage
The following code should be self-explanatory. If it is not, there are explanatory comments in the HomematicIp.Console project. You can also use that project to get started
class Program
{
private static void ConfigureServices(IServiceCollection services, IConfiguration configuration)
{
// Register the IOptions object
services.Configure<HomematicConfiguration>(configuration.GetSection(nameof(HomematicConfiguration)));
// Explicitly register the settings object by delegating to the IOptions object
services.AddSingleton(resolver =>
resolver.GetRequiredService<IOptions<HomematicConfiguration>>().Value);
services.AddLogging(configure => configure.AddConsole())
.Configure<LoggerFilterOptions>(options => options.MinLevel = LogLevel.Debug)
.AddTransient<HomematicService>()
.AddTransient<HomematicAuthService>()
.AddTransient<ClientWebSocket>()
.AddTransient<Func<HttpClient>>(provider => () => new HttpClient());
}
static async Task Main(string[] args)
{
#region 0. Configuration and DependencyInjection
var configuration = new ConfigurationBuilder()
.SetBasePath(Environment.CurrentDirectory)
.AddJsonFile("config.json", false, true)
.Build();
var serviceCollection = new ServiceCollection();
ConfigureServices(serviceCollection, configuration);
var serviceProvider = serviceCollection.BuildServiceProvider();
#endregion
#region 1. Authorization
//This region shows how to create an access token. You only need to do this once (until you revoke it)
var homematicAuthService = serviceProvider.GetService<HomematicAuthService>();
await homematicAuthService.ConnectionRequest();
System.Console.WriteLine("Please press the blue button on the access point.");
while (!await homematicAuthService.IsRequestAcknowledged())
{
await Task.Delay(TimeSpan.FromSeconds(1));
}
var authToken = await homematicAuthService.RequestAuthToken();
System.Console.WriteLine($"The AuthToken is {authToken}. Put it in you config to use it for further requests.");
var homematicConfiguration = serviceProvider.GetService<HomematicConfiguration>();
homematicConfiguration.AuthToken = authToken;
System.Console.ReadLine();
#endregion
#region 2a. QueryRestEndpoint
var homematicService = serviceProvider.GetService<HomematicService>();
//if you ever want to cancel a request, use a CancellationToken
var cts = new CancellationTokenSource();
await homematicService.ConnectAsync(cts.Token);
var homematicIpEnvironment = await homematicService.GetCurrentState(cts.Token);
//look at the properties of homematicIpEnvironment to see what information it holds
System.Console.WriteLine($"This Homematic Installation has {homematicIpEnvironment.Clients.Count} connected Clients.");
#endregion
#region 2b. QueryWebSocketEndpoint
var events = homematicService.ReceiveEvents(cts.Token);
//filter events by using Where and Subscribe. Here we only want to see events about ShutterContactDevices
events.Where(notification => notification.HomematicIpObjectBase is ShutterContactDevice)
.Subscribe(notification =>
{
var shutterContactDevice = notification.HomematicIpObjectBase as ShutterContactDevice;
System.Console.WriteLine($"{shutterContactDevice?.Label}: WindowState={shutterContactDevice?.WindowState}");
});
//output every message without processing it
events.Subscribe(System.Console.WriteLine);
//wait for the last event - if you don't cancel and nothing unexpected happens, that means forever
await events.LastOrDefaultAsync();
#endregion
}
}
Yet unsupported devices
Since there are a lot of Homematic devices, you might be presented with a message like the one below. In that case please open an issue, we will add the device asap. Since the message in curly braces will most likely contain an Id that is unique to your device, you might want to edit that out before posting the message:
The HomematicIp Endpoint sent a message about an unknown HomematicIp Object (most likely a yet unsupported device). Please open an issue at https://github.com/larsbeck/HomematicIp to have this device added to the library. We will need the following: {...}
A big thank you for laying the groundwork goes to the creators of this Python library homematicip-rest-api
Product | Versions 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 | net461 was computed. net462 was computed. net463 was computed. net47 was computed. 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. |
-
.NETStandard 2.0
- Microsoft.CSharp (>= 4.5.0)
- Microsoft.Extensions.Logging (>= 2.2.0)
- Newtonsoft.Json (>= 12.0.2)
- System.Net.WebSockets.Client (>= 4.3.2)
- System.Reactive (>= 4.1.5)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.