Skip to content

mattlaver/Nest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nest Play

A C# library for reading and writing to Nest Thermostats (https://nest.com/uk/)

Simple to use:

class Program
{
    static void Main(string[] args)
    {
        var accesstoken = ConfigurationManager.AppSettings["accesstoken"];
        var nest = new Nest(accesstoken);
        var response = nest.Get();
        Console.WriteLine(response.Devices.Thermostats.First().Value.ambient_temperature_c);
        Console.ReadLine();
    }
}

On the roadmap:

  • Add log in via Username & Password
  • Add pin based authorisation
  • Events to listen to data changes
  • Update Nest settings
  • Windows 8 Phone App with Live tile

About

C# Nest Client

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published