NAME
Device::Nest - Methods for wrapping the Nest API calls so that they are accessible via Perl
VERSION
Version 0.02
SYNOPSIS
This module provides a Perl interface to a Nest Thermostat via the following
methods:
- new
- connect
- fetch_Ambient_Temperature
- fetch_Designation
In order to use this module, you will require a Nest thermostat installed in
your home as well. You will also need your ClientID and ClientSecret provided
by Nest when you register as a developper at https://developer.nest.com.
You will aos need an access code which can be obtained at
https://home.nest.com/login/oauth2?client_id=CLIENT_ID&state=FOO
Your authorization code will be obtained and stored in this module when you
call it.
The module is written entirely in Perl and has been developped on Raspbian Linux.
SAMPLE CODE
use Device::Nest;
$my_Nest = Device::Nest->new($ClientID,$ClientSecret,$code,$phrase);
$my_Nest->connect();
undef $my_Nest;
You need to get an authorization code by going to https://home.nest.com/login/oauth2?client_id=CLIENT_ID&state=FOO
and specifying your client ID in the URL along with a random string for state
Use this code, along with your ClientID and ClientSecret to get an authorization code
by using the 'connect' function below.
From now on, all you need is your auth_token
EXPORT
All by default.
SUBROUTINES/METHODS
new - the constructor for a Nest object
Creates a new instance which will be able to fetch data from a unique Nest
sensor.
my $Nest = Device::Nest->new($ClientID,$ClientSecret,$phrase);
This method accepts the following parameters:
- $ClientID : Client ID for the account - Required
- $ClientSecret : Secret key for the account - Required
- $auth_token : authentication token to access the account - Required
Returns a Nest object if successful.
Returns 0 on failure
fetch_Auth_Token - generates and displays the auth_token
This function will display the authenticaton token for the PIN code
provided. This can only be done once per PIN code. Pleas make sure
to note and store your auth code since it will be the only thing requiired
for all other API calls.
$Nest->fetch_Auth_Token();
This method accepts no parameters
Returns 1 on success and prints auth_token
Returns 0 on failure
fetch_Thermostat_Designation - fetch the designation for your thermostat
Retrieves the code designating your thermostat and stores it in $self
$Nest->fetch_Thermostat_Designation();
This method accepts no parameters
Returns 1 on success
Returns 0 on failure
fetch_Ambient_Temperature_C - Fetch the ambient temperature reported by Nest in Celcius
Retrieves the ambient temperature reported by the Nest in Celcius
$Nest->fetch_Ambient_Temperature_C();
This method accepts no parameters
Returns the ambient temperature in Celcius
Returns 0 on failure
fetch_Ambient_Temperature_F - Fetch the ambient temperature reported by Nest in Fahrenheit
Retrieves the ambient temperature reported by the Nest in Fahrenheit
$Nest->fetch_Ambient_Temperature_F();
This method accepts no parameters
Returns the ambient temperature in Fahrenheit
Returns 0 on failure
fetch_Temperature_Scale - Fetch the temperature scale reported by Nest
Retrieves the temperature scale reported by the Nest as either F (Fahrenheit)
or C (Celcius)
$Nest->fetch_Temperature_Scale();
This method accepts no parameters
Returns the temperature scale
Returns 0 on failure
AUTHOR
Kedar Warriner, kedar at cpan.org
BUGS
Please report any bugs or feature requests to C<bug-device-Nest at rt.cpan.org>
or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Device-Nest
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Device::Nest
You can also look for information at:
RT: CPAN's request tracker
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
Many thanks to:
The guys at Nest for creating the Nest Thermostat sensor and
developping the API.
Everyone involved with CPAN.
LICENSE AND COPYRIGHT
Copyright 2014 Kedar Warriner <kedar at cpan.org>.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.