WiZ.NET 1.0.0.2

dotnet add package WiZ.NET --version 1.0.0.2
                    
NuGet\Install-Package WiZ.NET -Version 1.0.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="WiZ.NET" Version="1.0.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="WiZ.NET" Version="1.0.0.2" />
                    
Directory.Packages.props
<PackageReference Include="WiZ.NET" />
                    
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 WiZ.NET --version 1.0.0.2
                    
#r "nuget: WiZ.NET, 1.0.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.
#:package WiZ.NET@1.0.0.2
                    
#: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=WiZ.NET&version=1.0.0.2
                    
Install as a Cake Addin
#tool nuget:?package=WiZ.NET&version=1.0.0.2
                    
Install as a Cake Tool

WiZ .NET API Library

A modern .NET Standard 2.0 library for controlling WiZ Smart Bulbs

Fork Information: This project is a refactored fork of the original WizLib. It has been modernized and restructured to improve maintainability, separation of concerns, and testability.

Disclaimer: This is an independent open-source project developed as a hobby initiative. It is not affiliated with, endorsed by, or connected to the official WiZโ„ข trademark, brand, or its parent company. This library provides unofficial UDP-based communication capabilities for WiZ-compatible smart lighting products.

๐Ÿš€ Key Improvements in this Fork

  • Architectural Split: Separated bulb state (BulbModel) from operational logic (BulbService).
  • Resilient Communication: Improved UDP communication handling with built-in retry logic and thread-safe operations.
  • Modern C# Patterns: Refactored codebase using modern C# features (C# 10+) and improved naming conventions.
  • Interface Abstractions: Full interface support (IBulbService, IUdpCommunicationService, IBulbCache) for testability.
  • Cancellation Support: All async operations support CancellationToken.
  • Structured Logging: Comprehensive logging with scopes for better diagnostics.
  • Dependency Injection: First-class DI support with AddWiZNET() extension method.
  • Comprehensive Testing: Includes a dedicated XUnit test project with integration testing capabilities.

๐Ÿ“ฆ Installation

dotnet add package WiZ.NET

๐Ÿšฆ Getting Started

Creating the service

There are two ways to do it: Using Dependency Injection or manually creating the needed instances yourself.

using WiZ.NET.Extensions;
using WiZ.NET.Interfaces;

// In your Program.cs or Startup.cs
builder.Services.AddWiZNET();

// With custom timeout
builder.Services.AddWiZNET(timeout: 10000);

// Or using options
builder.Services.AddWiZNET(options =>
{
    options.Timeout = 10000;
});

// Resolve the service
var bulbService = serviceProvider.GetRequiredService<IBulbService>();
2. Creating instances manually
using Microsoft.Extensions.Logging;
using WiZ.NET.Interfaces;
using WiZ.NET.Services;

// For simple applications or testing
// A logger is needed - you could create a Console logger or a NullLogger
var loggerFactory = LoggerFactory.Create(builder => builder.AddConsole());

// Create the cache 
var bulbCache = new BulbCache();

// Create the UDP service
var udpService = new UdpCommunicationService(
    loggerFactory.CreateLogger<UdpCommunicationService>());

// Create the bulb service with all dependencies
var bulbService = new BulbService(
    udpService, 
    bulbCache, 
    loggerFactory.CreateLogger<BulbService>());

// Or with custom timeout
var bulbService = new BulbService(
    udpService, 
    bulbCache, 
    timeout: 10000,
    loggerFactory.CreateLogger<BulbService>());

Usage Examples

Discovery
using WiZ.NET.Interfaces;

// Discover all bulbs on the network
var bulbs = await bulbService.ScanForBulbsAsync();

// With custom timeout
var bulbs = await bulbService.ScanForBulbsAsync(timeout: 10000);

// With progress callback
var bulbs = await bulbService.ScanForBulbsAsync(
    timeout: 5000,
    callback: (bulb) => Console.WriteLine($"Found: {bulb.MACAddress}"));

// With cancellation support
using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(10));
var bulbs = await bulbService.ScanForBulbsAsync(
    timeout: 10000,
    cancellationToken: cts.Token);
Basic Controls
// Get a specific bulb by MAC address
var bulb = await bulbService.GetBulbByMacAsync(
    MACAddress.Parse("44:4F:8E:EF:BC:82"));

// Power control
await bulbService.TurnOnAsync(bulb);
await bulbService.TurnOffAsync(bulb);

// Brightness (0-100)
await bulbService.SetBrightnessAsync(bulb, 75);

// Color temperature (Kelvin)
await bulbService.SetTemperatureAsync(bulb, 2700); 

// RGB color
await bulbService.SetColorAsync(bulb, System.Drawing.Color.FromArgb(255, 0, 0)); 

// Built-in scenes
await bulbService.SetSceneAsync(bulb, LightMode.Ocean);
await bulbService.SetSceneAsync(bulb, LightMode.Daylight);
await bulbService.SetSceneAsync(bulb, LightMode.Wakeup);

// All operations support cancellation tokens
await bulbService.TurnOnAsync(bulb, cancellationToken);
Getting Bulb State
// Get current pilot (state) from bulb
await bulbService.RefreshStateAsync(bulb);
Console.WriteLine($"State: {(bulb.IsPoweredOn ? "ON" : "OFF")}");
Console.WriteLine($"Brightness: {bulb.Brightness}%");
Console.WriteLine($"Scene: {bulb.LightMode.Name}");
Working with the Cache
using WiZ.NET.Interfaces;

// Access the cache via DI
var cache = serviceProvider.GetRequiredService<IBulbCache>();

// Or if you created it manually
var cache = new BulbCache();

// Cache operations
if (cache.Contains(macAddress))
{
    var cachedBulb = cache.Get(macAddress);
}

// Get all cached bulbs
var allBulbs = cache.GetAll();

// Clear cache
cache.Clear();

๐Ÿงช Testing

The project includes a WiZ.Console app for manual verification and a WiZ.Tests suite for automated verification.

Running Tests

dotnet test WiZ.Tests/WiZ.Tests.csproj

๐Ÿ“„ License

MIT License - See LICENSE for details.

๐Ÿค Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

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.  net9.0 was computed.  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 was computed.  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. 
.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. 
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.0.2 132 2/1/2026
1.0.0.1 117 2/1/2026
1.0.0 121 1/31/2026