Haukcode.KiNet 1.0.45

dotnet add package Haukcode.KiNet --version 1.0.45
                    
NuGet\Install-Package Haukcode.KiNet -Version 1.0.45
                    
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="Haukcode.KiNet" Version="1.0.45" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Haukcode.KiNet" Version="1.0.45" />
                    
Directory.Packages.props
<PackageReference Include="Haukcode.KiNet" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Haukcode.KiNet --version 1.0.45
                    
#r "nuget: Haukcode.KiNet, 1.0.45"
                    
#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.
#:package Haukcode.KiNet@1.0.45
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Haukcode.KiNet&version=1.0.45
                    
Install as a Cake Addin
#tool nuget:?package=Haukcode.KiNet&version=1.0.45
                    
Install as a Cake Tool

Haukcode.KiNet

A modern .NET library for controlling Philips/Signify Color Kinetics lighting systems using the KiNet protocol (v1 and v2).

Quick Start

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);

Features

  • KiNet v1 & v2 - DMXOUT and PORTOUT protocol support
  • Device Discovery - Find Color Kinetics power supplies and fixtures
  • Sync Support - Coordinate timing across multiple devices
  • High Performance - Efficient UDP communication
  • .NET 8, 9, 10 - Modern multi-target support

Compatibility

Tested with PDS-150e (v1) and sPDS-60ca (v1/v2). Compatible with all Color Kinetics devices supporting the KiNet protocol.

Documentation

For comprehensive documentation, examples, and API reference, visit:

https://github.com/HakanL/Haukcode.KiNet

License

MIT License - See LICENSE

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.45 78 3/20/2026
1.0.44 87 3/12/2026
1.0.43 108 2/5/2026
1.0.42 102 2/5/2026
1.0.41 101 2/5/2026
1.0.37 304 11/11/2025
1.0.35 196 10/9/2025
1.0.34 204 10/7/2025
1.0.33 133 10/4/2025
1.0.32 319 5/14/2025
1.0.31 294 5/13/2025
1.0.29 217 3/13/2025
1.0.28 169 1/24/2025
1.0.27 145 1/15/2025
1.0.26 167 1/10/2025
1.0.25 156 1/9/2025
1.0.24 167 1/7/2025
1.0.23 163 1/7/2025
1.0.22 166 12/20/2024
1.0.20 198 12/13/2024
Loading failed

1.0.0 - Initial release