Skip to content
forked from kevbite/WLED.NET

A .NET Wrapper around the WLED JSON API.

License

Notifications You must be signed in to change notification settings

0d0a0c0e/WLED.NET

 
 

Repository files navigation

WLED.NET Continuous Integration Workflow install from nuget downloads

A .NET Wrapper around the WLED JSON API.

Getting Started

Installing Package

WLED.NET can be installed directly via the package manager console by executing the following commandlet:

Install-Package WLED

alternative you can use the dotnet CLI.

dotnet add package WLED

Usage

Getting data from the WLED device

var client = new WLedClient("http://office-computer-wled/");

var data = await client.Get();

Post data to the WLED device

Turn on the device on

var client = new WLedClient("http://office-computer-wled/");
await client.Post(new StateRequest { On = true });

Samples

The samples folder containers examples of how you could use the WLED.NET Library.

Contributing

  1. Issue
  2. Fork
  3. Hack!
  4. Pull Request

About

A .NET Wrapper around the WLED JSON API.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 96.9%
  • Dockerfile 3.1%