-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from neoteknic/patch-2
Fix notice if no mac address
- Loading branch information
Showing
68 changed files
with
500 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
language: php | ||
|
||
php: | ||
- 5.3 | ||
- 5.4 | ||
- 5.5 | ||
- 5.6 | ||
- 7.0 | ||
- 7.1 | ||
- hhvm | ||
|
||
before_install: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
/** | ||
* Phue: Philips Hue PHP Client | ||
* | ||
* @author Michael Squires <[email protected]> | ||
* @copyright Copyright (c) 2012 Michael K. Squires | ||
* @license http://github.com/sqmk/Phue/wiki/License | ||
*/ | ||
namespace Phue\LightModel; | ||
|
||
/** | ||
* Hue Bulb V3 | ||
*/ | ||
class Lct010Model extends AbstractLightModel | ||
{ | ||
|
||
/** | ||
* Model id | ||
*/ | ||
const MODEL_ID = 'LCT010'; | ||
|
||
/** | ||
* Model name | ||
*/ | ||
const MODEL_NAME = 'Hue bulb A19 (gamut C)'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
/** | ||
* Phue: Philips Hue PHP Client | ||
* | ||
* @author Michael Squires <[email protected]> | ||
* @copyright Copyright (c) 2012 Michael K. Squires | ||
* @license http://github.com/sqmk/Phue/wiki/License | ||
*/ | ||
namespace Phue\LightModel; | ||
|
||
/** | ||
* Hue BR30 | ||
*/ | ||
class Lct011Model extends AbstractLightModel | ||
{ | ||
|
||
/** | ||
* Model id | ||
*/ | ||
const MODEL_ID = 'LCT011'; | ||
|
||
/** | ||
* Model name | ||
*/ | ||
const MODEL_NAME = 'Hue BR30'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
/** | ||
* Phue: Philips Hue PHP Client | ||
* | ||
* @author Michael Squires <[email protected]> | ||
* @copyright Copyright (c) 2012 Michael K. Squires | ||
* @license http://github.com/sqmk/Phue/wiki/License | ||
*/ | ||
namespace Phue\LightModel; | ||
|
||
/** | ||
* Hue Bulb V3 | ||
*/ | ||
class Lct014Model extends AbstractLightModel | ||
{ | ||
|
||
/** | ||
* Model id | ||
*/ | ||
const MODEL_ID = 'LCT014'; | ||
|
||
/** | ||
* Model name | ||
*/ | ||
const MODEL_NAME = 'Hue bulb A19 (gamut C)'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
/** | ||
* Phue: Philips Hue PHP Client | ||
* | ||
* @author Michael Squires <[email protected]> | ||
* @copyright Copyright (c) 2012 Michael K. Squires | ||
* @license http://github.com/sqmk/Phue/wiki/License | ||
*/ | ||
namespace Phue\LightModel; | ||
|
||
/** | ||
* Color Light Module | ||
*/ | ||
class Llm010Model extends AbstractLightModel | ||
{ | ||
|
||
/** | ||
* Model id | ||
*/ | ||
const MODEL_ID = 'LLM010'; | ||
|
||
/** | ||
* Model name | ||
*/ | ||
const MODEL_NAME = 'Color Temperature Module'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
/** | ||
* Phue: Philips Hue PHP Client | ||
* | ||
* @author Michael Squires <[email protected]> | ||
* @copyright Copyright (c) 2012 Michael K. Squires | ||
* @license http://github.com/sqmk/Phue/wiki/License | ||
*/ | ||
namespace Phue\LightModel; | ||
|
||
/** | ||
* Color Light Module | ||
*/ | ||
class Llm011Model extends AbstractLightModel | ||
{ | ||
|
||
/** | ||
* Model id | ||
*/ | ||
const MODEL_ID = 'LLM011'; | ||
|
||
/** | ||
* Model name | ||
*/ | ||
const MODEL_NAME = 'Color Temperature Module'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
/** | ||
* Phue: Philips Hue PHP Client | ||
* | ||
* @author Michael Squires <[email protected]> | ||
* @copyright Copyright (c) 2012 Michael K. Squires | ||
* @license http://github.com/sqmk/Phue/wiki/License | ||
*/ | ||
namespace Phue\LightModel; | ||
|
||
/** | ||
* Color Light Module | ||
*/ | ||
class Llm012Model extends AbstractLightModel | ||
{ | ||
|
||
/** | ||
* Model id | ||
*/ | ||
const MODEL_ID = 'LLM012'; | ||
|
||
/** | ||
* Model name | ||
*/ | ||
const MODEL_NAME = 'Color Temperature Module'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
/** | ||
* Phue: Philips Hue PHP Client | ||
* | ||
* @author Michael Squires <[email protected]> | ||
* @copyright Copyright (c) 2012 Michael K. Squires | ||
* @license http://github.com/sqmk/Phue/wiki/License | ||
*/ | ||
namespace Phue\LightModel; | ||
|
||
/** | ||
* Hue LightStrips | ||
*/ | ||
class Lst002Model extends AbstractLightModel | ||
{ | ||
|
||
/** | ||
* Model id | ||
*/ | ||
const MODEL_ID = 'LST002'; | ||
|
||
/** | ||
* Model name | ||
*/ | ||
const MODEL_NAME = 'Hue LightStrips Plus'; | ||
|
||
/** | ||
* Can retain state | ||
*/ | ||
const CAN_RETAIN_STATE = true; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
/** | ||
* Phue: Philips Hue PHP Client | ||
* | ||
* @author Michael Squires <[email protected]> | ||
* @copyright Copyright (c) 2012 Michael K. Squires | ||
* @license http://github.com/sqmk/Phue/wiki/License | ||
*/ | ||
namespace Phue\LightModel; | ||
|
||
/** | ||
* Hue A19 White Ambiance | ||
*/ | ||
class Ltw001Model extends AbstractLightModel | ||
{ | ||
|
||
/** | ||
* Model id | ||
*/ | ||
const MODEL_ID = 'LTW001'; | ||
|
||
/** | ||
* Model name | ||
*/ | ||
const MODEL_NAME = 'Hue A19 White Ambiance'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
/** | ||
* Phue: Philips Hue PHP Client | ||
* | ||
* @author Michael Squires <[email protected]> | ||
* @copyright Copyright (c) 2012 Michael K. Squires | ||
* @license http://github.com/sqmk/Phue/wiki/License | ||
*/ | ||
namespace Phue\LightModel; | ||
|
||
/** | ||
* Hue A19 White Ambiance | ||
*/ | ||
class Ltw004Model extends AbstractLightModel | ||
{ | ||
|
||
/** | ||
* Model id | ||
*/ | ||
const MODEL_ID = 'LTW004'; | ||
|
||
/** | ||
* Model name | ||
*/ | ||
const MODEL_NAME = 'Hue A19 White Ambiance'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
/** | ||
* Phue: Philips Hue PHP Client | ||
* | ||
* @author Michael Squires <[email protected]> | ||
* @copyright Copyright (c) 2012 Michael K. Squires | ||
* @license http://github.com/sqmk/Phue/wiki/License | ||
*/ | ||
namespace Phue\LightModel; | ||
|
||
/** | ||
* Hue GU-10 White Ambiance | ||
*/ | ||
class Ltw013Model extends AbstractLightModel | ||
{ | ||
|
||
/** | ||
* Model id | ||
*/ | ||
const MODEL_ID = 'LTW013'; | ||
|
||
/** | ||
* Model name | ||
*/ | ||
const MODEL_NAME = 'Hue GU-10 White Ambiance'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
/** | ||
* Phue: Philips Hue PHP Client | ||
* | ||
* @author Michael Squires <[email protected]> | ||
* @copyright Copyright (c) 2012 Michael K. Squires | ||
* @license http://github.com/sqmk/Phue/wiki/License | ||
*/ | ||
namespace Phue\LightModel; | ||
|
||
/** | ||
* Hue GU-10 White Ambiance | ||
*/ | ||
class Ltw014Model extends AbstractLightModel | ||
{ | ||
|
||
/** | ||
* Model id | ||
*/ | ||
const MODEL_ID = 'LTW014'; | ||
|
||
/** | ||
* Model name | ||
*/ | ||
const MODEL_NAME = 'Hue GU-10 White Ambiance'; | ||
} |
Oops, something went wrong.