Skip to content

Commit

Permalink
Update zigbee-shepherd-converters.
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenkk committed Jul 11, 2019
1 parent 1b859c4 commit d3e9795
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
20 changes: 10 additions & 10 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"semver": "*",
"winston": "2.4.2",
"zigbee-herdsman": "0.1.16",
"zigbee-shepherd-converters": "10.1.2",
"zigbee-shepherd-converters": "10.1.3",
"deep-diff": "*"
},
"devDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions test/devicePublish.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ describe('DevicePublish', () => {
'lightingColorCtrl',
'moveToColor',
'functional',
{colorx: 17085, colory: 44000, transtime: 0},
{colorx: 17806, colory: 43155, transtime: 0},
cfg.default,
null,
expect.any(Function));
Expand All @@ -495,7 +495,7 @@ describe('DevicePublish', () => {
expect(publishEntityState).toHaveBeenCalledTimes(1);
expect(publishEntityState).toHaveBeenNthCalledWith(1,
'0x00000016',
{color: {x: 0.2607, y: 0.6714}});
{color: {x: 0.2717, y: 0.6585}});
});

it('Should publish messages to zigbee devices with color rgb string', async () => {
Expand All @@ -510,7 +510,7 @@ describe('DevicePublish', () => {
'lightingColorCtrl',
'moveToColor',
'functional',
{colorx: 17085, colory: 44000, transtime: 0},
{colorx: 17806, colory: 43155, transtime: 0},
cfg.default,
null,
expect.any(Function));
Expand All @@ -519,7 +519,7 @@ describe('DevicePublish', () => {
expect(publishEntityState).toHaveBeenCalledTimes(1);
expect(publishEntityState).toHaveBeenNthCalledWith(1,
'0x00000017',
{color: {x: 0.2607, y: 0.6714}});
{color: {x: 0.2717, y: 0.6585}});
}
);

Expand Down

0 comments on commit d3e9795

Please sign in to comment.