Giter Club home page Giter Club logo

lifxiot's Introduction

LifxIoT

.NET wrapper to control Lifx bulbs via their cloud API. This code is based on that created by Daniel Porry here with changes made to the await methods now having their continueOnCapturedContext property set to false so as to prevent the code hanging when deployed to a Raspberry Pi 3 running Windows IoT and a SelectorSearch type class added.

Installation

To use LifxIoT in your C# project, you can either download the LifxIoT C# .NET libraries directly from the Github repository or, if you have the NuGet package manager installed, you can grab them automatically.

PM> Install-Package LifxIoT

Once you have the LifxIoT libraries properly referenced in your project, you can include calls to them in your code.

Add the following namespaces to use the library:

using LifxIoT.Api;
using LifxIoT.Models;

Dependencies

A Lifx account (and bulbs) are required for use, an access token should be generated in the Lifx account.

Usage

This is intended for usage in Windows IoT projects.

The below code in MainPage.xaml.cs lists all bulbs linked to the account.

        public MainPage()
        {
            this.InitializeComponent();

            LifxApi api = new LifxApi("YOUR_TOKEN_HERE");

            SelectorList selectors = new SelectorList();

            selectors.Add(LifxIoT.Models.Selector.All);

            IEnumerable<Light> lights = api.ListLights(selectors).Result;
        }

And this is how to use the new SelectorSearch class to return only bulbs in the bedroom group.

		public MainPage()
		{
			this.InitializeComponent();

			LifxApi api = new LifxApi("YOUR_TOKEN_HERE");

			SelectorList selectors = new SelectorList();
			SelectorSearch selector = new SelectorSearch();

			selector.SearchType = "group";
			selector.SearchValue = "Bedroom";

			selectors.Add(selector);

			IEnumerable<Light> lights = api.ListLights(selectors).Result;
		}

lifxiot's People

Contributors

dependabot[bot] avatar mattosaurus avatar pnc-matthewgrant avatar

Watchers

 avatar  avatar

Forkers

timhess

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.