Skip to content

Commit

Permalink
Merge pull request #96 from kasperhartwich/master
Browse files Browse the repository at this point in the history
Add missing light models.
  • Loading branch information
sqmk committed Nov 6, 2015
2 parents ae63038 + f849612 commit 99765c4
Show file tree
Hide file tree
Showing 5 changed files with 130 additions and 0 deletions.
26 changes: 26 additions & 0 deletions library/Phue/LightModel/Lct007Model.php
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 V2
*/
class Lct007Model extends AbstractLightModel
{
/**
* Model id
*/
const MODEL_ID = 'LCT007';

/**
* Model name
*/
const MODEL_NAME = 'Hue Bulb V2';
}
26 changes: 26 additions & 0 deletions library/Phue/LightModel/Llc001Model.php
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;

/**
* Living Colors G2
*/
class Llc001Model extends AbstractLightModel
{
/**
* Model id
*/
const MODEL_ID = 'LLC001';

/**
* Model name
*/
const MODEL_NAME = 'Living Colors G2';
}
26 changes: 26 additions & 0 deletions library/Phue/LightModel/Llc014Model.php
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;

/**
* Living Colors Aura
*/
class Llc014Model extends AbstractLightModel
{
/**
* Model id
*/
const MODEL_ID = 'LLC014';

/**
* Model name
*/
const MODEL_NAME = 'Living Colors Aura';
}
26 changes: 26 additions & 0 deletions library/Phue/LightModel/Llc020Model.php
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 Go
*/
class Llc020Model extends AbstractLightModel
{
/**
* Model id
*/
const MODEL_ID = 'LLC020';

/**
* Model name
*/
const MODEL_NAME = 'Hue Go';
}
26 changes: 26 additions & 0 deletions library/Phue/LightModel/Lwb006Model.php
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 Lux
*/
class Lwb006Model extends AbstractLightModel
{
/**
* Model id
*/
const MODEL_ID = 'LWB006';

/**
* Model name
*/
const MODEL_NAME = 'Hue A19 Lux';
}

0 comments on commit 99765c4

Please sign in to comment.