adamkempenich / magichome-python

MagicHome Wifi protocol for python.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

turn_on and turn_off aren't working with RGB-LED-Strip

reg-is opened this issue · comments

I was able to get everything to work apart turn_on and turn_off which aren't working with my RGB-LED-Strip.
I'm able to change the color but not to turn it on or off

Thanks for posting this! I've been away from the development of this as I get settled in at a new job, city, and lifestyle. I've been ramping up a bit more lately to get back into home automation again.

For some reason, the RGB strips seem to exhibit strange behavior across the board, even when I send raw packets to the device. What version firmware is your RGB device on?

Does it control brightness ?

Thanks!

Youcef

Got the same problem, but at the moment my app isn't working so if there is another way to get the firmware version except for the app please tell me

Sorry --- I've been away from this. Maybe the Flux python package that Home Assistant uses will work?

Got the same problem, but at the moment my app isn't working so if there is another way to get the firmware version except for the app please tell me

to turn on and off , i edited magichome.py

and changed on/off to this

def turn_on(self):
"""Turn a device on."""
if self.device_type <= 1:

        self.send_bytes(0x71, 0x23, 0x0F, 0xA3)

    elif self.device_type == 2:
      
       
         self.send_bytes(0x71, 0x23, 0x0F, 0xA3)

    elif self.device_type == 3:
        
       
         self.send_bytes(0x71, 0x23, 0x0F, 0xA3)

    elif self.device_type == 4:
        
          self.send_bytes(0xCC, 0x23, 0x33)
    else:
        # Incompatible device received
        print("Incompatible device type received...")

def turn_off(self):
    """Turn a device off."""
    if self.device_type <= 1:
       
        
        
        self.send_bytes(0x71, 0x24, 0x0F, 0xA4)

    elif self.device_type == 2:
      
       
         self.send_bytes(0x71, 0x24, 0x0F, 0xA4)

    elif self.device_type == 3:
        
       
         self.send_bytes(0x71, 0x24, 0x0F, 0xA4)

    elif self.device_type == 4:
        
          self.send_bytes(0xCC, 0x24, 0x33)
    else:
        # Incompatible device received
        print("Incompatible device type received...")

my device type 0 and it works now

Does it control brightness ?

Thanks!

Youcef

brightness is do like this eg for bright red controller1.update_device(255, 0, 0).
for dimmer reduce the red to a lower value eg controller1.update_device(50, 0, 0)