Skip to content

Commit

Permalink
Added more lights.
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperhartwich committed Nov 5, 2015
1 parent 8acc2d4 commit f849612
Show file tree
Hide file tree
Showing 4 changed files with 104 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';
}

0 comments on commit f849612

Please sign in to comment.