![]() |
VOOZH | about |
dotnet add package Haukcode.KiNet --version 1.0.47
NuGet\Install-Package Haukcode.KiNet -Version 1.0.47
<PackageReference Include="Haukcode.KiNet" Version="1.0.47" />
<PackageVersion Include="Haukcode.KiNet" Version="1.0.47" />Directory.Packages.props
<PackageReference Include="Haukcode.KiNet" />Project file
paket add Haukcode.KiNet --version 1.0.47
#r "nuget: Haukcode.KiNet, 1.0.47"
#:package Haukcode.KiNet@1.0.47
#addin nuget:?package=Haukcode.KiNet&version=1.0.47Install as a Cake Addin
#tool nuget:?package=Haukcode.KiNet&version=1.0.47Install as a Cake Tool
A modern .NET library for controlling Philips/Signify Color Kinetics lighting systems using the KiNet protocol (v1 and v2).
using Haukcode.KiNet;
using System.Net;
// Create a KiNet client
var network = Haukcode.Network.Utils.GetFirstBindAddress();
using var client = new KiNetClient(network.IPAddress, network.NetMask);
// Send DMX data (KiNet v1)
byte[] dmxData = new byte[512];
dmxData[0] = 255; // Red
dmxData[1] = 128; // Green
dmxData[2] = 0; // Blue
await client.SendDmxData(
address: IPAddress.Parse("192.168.1.100"),
universeId: 1,
dmxData: dmxData,
protocolVersion: 1
);
// Broadcast to all devices
await client.SendDmxData(null, 1, dmxData, protocolVersion: 2);
// Synchronize devices
await client.SendSync(null);
Tested with PDS-150e (v1) and sPDS-60ca (v1/v2). Compatible with all Color Kinetics devices supporting the KiNet protocol.
For comprehensive documentation, examples, and API reference, visit:
https://github.com/HakanL/Haukcode.KiNet
MIT License - See LICENSE
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.47 | 105 | 5/19/2026 |
| 1.0.46 | 100 | 5/2/2026 |
| 1.0.45 | 110 | 3/20/2026 |
| 1.0.44 | 119 | 3/12/2026 |
| 1.0.43 | 127 | 2/5/2026 |
| 1.0.42 | 121 | 2/5/2026 |
| 1.0.41 | 119 | 2/5/2026 |
| 1.0.37 | 318 | 11/11/2025 |
| 1.0.35 | 211 | 10/9/2025 |
| 1.0.34 | 219 | 10/7/2025 |
| 1.0.33 | 147 | 10/4/2025 |
| 1.0.32 | 335 | 5/14/2025 |
| 1.0.31 | 307 | 5/13/2025 |
| 1.0.29 | 233 | 3/13/2025 |
| 1.0.28 | 182 | 1/24/2025 |
| 1.0.27 | 159 | 1/15/2025 |
| 1.0.26 | 181 | 1/10/2025 |
| 1.0.25 | 171 | 1/9/2025 |
| 1.0.24 | 181 | 1/7/2025 |
| 1.0.23 | 177 | 1/7/2025 |
1.0.0 - Initial release