Skip to content

Commit

Permalink
feat(zigbee2mqtt): Add Adeo devices (#1169)
Browse files Browse the repository at this point in the history
Fix #1156

Co-authored-by: Pierre-Gilles Leymarie <pierregilles.leymarie@gmail.com>
  • Loading branch information
cicoub13 and Pierre-Gilles authored May 3, 2021
1 parent 5eeb419 commit 63de819
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
17 changes: 17 additions & 0 deletions server/services/zigbee2mqtt/model/Adeo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
const { features } = require('../utils/features');

/**
* Adeo managed models.
*/
const Adeo = {
brand: 'Adeo',
models: {
'9CZA-A806ST-Q1A': [features.light, features.brightness, features.color_temperature], // color xy
'9CZA-M350ST-Q1A': [features.light, features.brightness, features.color_temperature], // color xy
'9CZA-G1521-Q1A': [features.light, features.brightness, features.color_temperature], // color xy
},
};

module.exports = {
Adeo,
};
1 change: 1 addition & 0 deletions server/services/zigbee2mqtt/model/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ models.push(require('./iCasa').iCasa);
models.push(require('./ilux').ilux);
models.push(require('./TuYa').TuYa);
models.push(require('./Lonsonho').Lonsonho);
models.push(require('./Adeo').Adeo);

/**
* @description Get features by model name.
Expand Down

0 comments on commit 63de819

Please sign in to comment.