Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Support for Smart Wi-Fi LED Bulb with Dimmable Light MSL100 #45

Closed
oleksiikutuzov opened this issue Jul 2, 2020 · 19 comments
Closed

Comments

@oleksiikutuzov
Copy link

Hello, I'd like to help adding this LED Bulb.
I'm not good at programming stuff, but I can provide the logs and help with testing. It seems to be similar to other light bulbs.

Turning on and off.

{
  "payload" : {
    "togglex" : {
      "onoff" : 1,
      "channel" : 0
    }
  },
  "header" : {
    "messageId" : "XXXXXX",
    "method" : "SET",
    "from" : "http:\/\/XXXXXX\/config",
    "payloadVersion" : 1,
    "namespace" : "Appliance.Control.ToggleX",
    "sign" : "XXXXXX",
    "triggerSrc" : "iOS",
    "timestamp" : XXXXXX
  }
}

{
  "payload" : {
    "togglex" : {
      "onoff" : 0,
      "channel" : 0
    }
  },
  "header" : {
    "messageId" : "XXXXXX",
    "method" : "SET",
    "from" : "http:\/\/XXXXXX\/config",
    "payloadVersion" : 1,
    "namespace" : "Appliance.Control.ToggleX",
    "sign" : "XXXXXX",
    "triggerSrc" : "iOS",
    "timestamp" : XXXXXX
  }
}

Changing the luminance. It changes in range from 1 to 100. Not sure what capacity does, but it doesn't change.

{
  "payload" : {
    "light" : {
      "channel" : 0,
      "luminance" : 1,
      "capacity" : 4
    }
  },
  "header" : {
    "messageId" : "XXXXXX",
    "method" : "SET",
    "from" : "http:\/\/XXXXXX\/config",
    "payloadVersion" : 1,
    "namespace" : "Appliance.Control.Light",
    "sign" : "XXXXXX",
    "triggerSrc" : "iOS",
    "timestamp" : XXXXXX
  }
}

{
  "payload" : {
    "light" : {
      "channel" : 0,
      "luminance" : 100,
      "capacity" : 4
    }
  },
  "header" : {
    "messageId" : "XXXXXX",
    "method" : "SET",
    "from" : "http:\/\/XXXXXX\/config",
    "payloadVersion" : 1,
    "namespace" : "Appliance.Control.Light",
    "sign" : "XXXXXX",
    "triggerSrc" : "iOS",
    "timestamp" : XXXXXX
  }
}
@oleksiikutuzov oleksiikutuzov changed the title Add Support for Smart Wi-Fi LED Build with Dimmable Light MSL100 Add Support for Smart Wi-Fi LED Bulb with Dimmable Light MSL100 Jul 2, 2020
@donavanbecker
Copy link
Collaborator

Thanks @KutuzoffLeha. potential, any pull requests are welcome.

@kieranmjones
Copy link

I have just got a pair of these bulbs as well, really good bulbs, but no support currently. I'll take a look and see if I can get it working then do a pull request for it, but I promise nothing, this is not my area of expertise!

@donavanbecker
Copy link
Collaborator

I have just got a pair of these bulbs as well, really good bulbs, but no support currently. I'll take a look and see if I can get it working then do a pull request for it, but I promise nothing, this is not my area of expertise!

Thanks @kieranmjones!

@ghost
Copy link

ghost commented Aug 10, 2020

Anyone have any luck? I’m trying to add a pair of MSL120 lights, but haven’t gotten them to work yet.

@PatDal81
Copy link

Same request here, was able to get a MSL120J to work (On/Off) using the standard config (as a normal outlet) but this is it. No options to change the light/brightness.

Would be neat to add support for this light bulb! Thanks!

@donavanbecker donavanbecker unpinned this issue Sep 14, 2020
@donavanbecker donavanbecker pinned this issue Sep 17, 2020
@github-actions
Copy link
Contributor

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@github-actions github-actions bot added the stale label Sep 17, 2020
@PatDal81
Copy link

Are we using the right channel for this kind of improvement?

@github-actions github-actions bot removed the stale label Sep 17, 2020
@donavanbecker
Copy link
Collaborator

@PatDal81, @KutuzoffLeha, @druth001

does dimming lights work for you in the latest beta? #78

@PatDal81
Copy link

PatDal81 commented Oct 3, 2020

I tried using the model "MSS560" but unfortunately ,setting the brightness is not working. I can see in homebridge logs it's trying to change the brightness but the light is still 100%

[10/3/2020, 05:07:24] [Lumière Chalet Chambre] MSS560 set brightness to 100
[10/3/2020, 05:07:25] [Lumière Chalet Chambre] MSS560 set brightness to 54
[10/3/2020, 05:07:25] [Lumière Chalet Chambre] MSS560 turned On
[10/3/2020, 05:07:26] [Lumière Chalet Chambre] MSS560 set brightness to 34
[10/3/2020, 05:07:26] [Lumière Chalet Chambre] MSS560 turned On
[10/3/2020, 05:07:26] [Lumière Chalet Chambre] MSS560 set brightness to 31
[10/3/2020, 05:07:26] [Lumière Chalet Chambre] MSS560 turned On
[10/3/2020, 05:08:34] [Lumière Chalet Chambre] MSS560 set brightness to 23
[10/3/2020, 05:08:34] [Lumière Chalet Chambre] MSS560 turned On
[10/3/2020, 05:08:35] [Lumière Chalet Chambre] MSS560 set brightness to 26

Still able to open/close the light.

@donavanbecker
Copy link
Collaborator

@PatDal81 Use the model you have, not the one in the comments. Which is?

@PatDal81
Copy link

PatDal81 commented Oct 3, 2020

Model that I'm using is MSL120J. If I configure it with this model number, I'm getting a simple on/off switch, no dimming capabilities.

@oleksiikutuzov
Copy link
Author

I don't have those bulbs anymore unfortunately. But can confirm with MSS560 config for MSL420 that only on/off works, not the brightness adjustment.

@PatDal81
Copy link

Anything else that can be done to help you on this one?

@kieranmjones
Copy link

I haven’t yet had a chance to have a look at this, although the addition of other dimming devices to the plug-in gives me a good starting point so I’ll have another look as soon as I find some time.

@rickybright
Copy link

Also looking forward to this being supported. If there's anything that we can do to assist, please let me know.

@jbouganim
Copy link

@donavanbecker added basic support for the MSL-1XX bulbs if you're interested!
#100

@donavanbecker
Copy link
Collaborator

donavanbecker commented Nov 7, 2020

Added with 3.3.0!

@kieranmjones
Copy link

Working perfectly! Thank you. Sorry I couldn't get it done, just never managed to get the time to work it out.

@acer589
Copy link

acer589 commented Nov 7, 2020

Completely out of my depth here. How long does it usually take for updates to make their way to npm?

@donavanbecker donavanbecker unpinned this issue Nov 20, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants