IKEA UTRUSTA



  • Hi I just noticed that IKEA UTRUSTA is running 2,4GHz - 2,4835 GHz - just wondering if anyone have played with mysensors to control such an IKEA device if it's possible at all?

    ikea_remote.PNG
    IKEA_LED_PS.PNG



  • A few websites state this things are 433mhz, ikea itself states it is 2,4ghz. Would be interesting to crack open one of these things. 🙂



  • is the wireless reciever simply an on off switch?


  • Mod

    @bjacobse According to this guy it contains a TI CC2500 transciever and MSP430G2221 microcontroller.
    This guy claims it suffers from WiFi interference.



  • ANSLUTA:
    This remote control has a maximum range of 19.5 ft. when not blocked by walls and batteries are fully charged.
    Frequency range: 2400 MHz ~ 2483.5 MHz.

    UTRUSTA:
    is the old could be 433MHz and is obsolete from production



  • @Yveaux Hi ! I'm the guy from AlsaGeek. I confirm, CC2500 2.4GHz transceiver + MSP430G2221 microcontroler.

    CC2500 is a transmitter on the remote but it can work on both direction ! You can have a remote control that receive information.

    The MSP430 is programmable !!! You have 4 pins on the PCB (GND, VCC, RESET, TEST) and you can reprogram the remote control with MSP-EXP430G2 lauchpad kit. It works !

    But... MSP430G2221 only have 128 bytes of RAM. The CC2500 driver use a full duplex 64 bytes buffer, so it will not work. I made it work by reducing the buffer to 4 or 5 bytes ! Pretty small, but it works ! 😉

    I'm working on a "HowTo".

    Of course, you can change the MSP430 and put a bigger one. And of course, you can remove the MSP430 and connect an Arduino or any other SPI capable microcontroler.

    Have fun !
    Frederic from AlsaGeek, France.



  • @Blob Nice work, how is the how to guide going? I'm very interested to implement the IKEA Utrusta lighting in my home automation setup.



  • I wrote a MicroPython driver for the Ansluta one and can give you some details I learned along the way.

    The $20 Ansluta one-button remote uses a 2.4GHz TI CC2500 to transmit one of four 6 byte commands.
    https://www.ikea.com/au/en/catalog/products/90300773/

    I am using it to control 10W and 30W Ansluta transformers with Forbattra under-kitchen-cupboard LED panels.
    https://www.ikea.com/au/en/catalog/products/10320181/
    https://www.ikea.com/au/en/catalog/products/80300764/
    https://www.ikea.com/au/en/catalog/products/80316878/

    It seems the whole Ansluta range is using 2.4GHz CC2500 chips, while the Utrusta range was on 433MHz.

    Each time you press the remote's button, it cycles through 0%, 50%, 100%, 50%, 0% brightness.
    The inspiration for writing my own driver was so that I could go straight to 100% brightness, and use a microcontroller with PIR and timer to illuminate the panels.

    To pair, hold down the pair button on the transformer until it blinks.
    Then press and hold the remote button to send the pair command.
    After that, the transformer only listens to commands from the remote's unique 16-bit address.

    The remote's unique 16-bit address can't be changed.
    I sniffed the pair command from a few lights inside IKEA and can confirm each remote has a unique address.

    One remote can control multiple transformers, if you pair the remote with each.
    Each transformer can only listen to one 16-bit remote address.
    The transformers can also be chained.

    Instructions:

    • 0x01 set brightness to 0% (LEDs off)
    • 0x02 set brightness to 50%
    • 0x03 set brightness to 100%
    • 0xFF pair

    The SPI tx packet looks like this:

    • 0x7F enter CC2500 TX burst mode (sends each of these bytes without toggling CS pin)
    • 0x06 packet length
    • 0x55 begin ansluta command 1/2
    • 0x01 begin ansluta command 2/2
    • 0x66 remote unique address 1/2
    • 0x77 remote unique address 2/2
    • 0x01 instruction (see above)
    • 0xAA end ansluta command
    • 0xFF end of packet

    When you press the button on the remote, it sends the command 50 times to ensure the receiver is awake and receives it.
    Communication is unidirectional. Remote -> Transformer. There is no acknowledge or data sent back from the transformer.

    You can adjust the TX power of the CC2500 in code.
    Set register 0x3E to 0xFF.
    I am not sure what the original TX power level of the one-button remote is, but it works from at least 5m away.

    I made a breakout board for making a CC2500 module breadboard friendly, available on OSH Park for around $3.50 for 3x.
    https://oshpark.com/shared_projects/chUQvFmW



  • This is the receiver inside the 10W Ansluta transformer:

    receiver

    The U1 G2231 chip is the MSP430G2221 microcontroller.
    http://www.ti.com/lit/ds/symlink/msp430g2231.pdf

    The U2 chip is the CC2500 transceiver.
    http://www.ti.com/lit/ds/symlink/cc2500.pdf

    The Q1 chip in the bottom corner controls the LED brightness.
    Fairchild FDD8880 30V N-channel MOSFET.
    https://datasheet.octopart.com/FDD8880-Fairchild-datasheet-480105.pdf


  • Admin

    hmm.. interesting, that they chose that FET.. According to datasheets then the MSP runs at max 3V6 (I guess they use 3V3 here, the chip marked 8A637 is probably a LDO).

    The chosen FET is performing best as a switch with Vgs above 4.5, 4.5V RdsON is 12mOhm, but it will raise quickly as the Vgs voltage is lowered below this threshold.



  • @bjacobse newbie question, any chance someone knows where to get a Led power supply 240AC/24DC for UTRUSTA (like the one above or similar) that obviously needs to fit into the UTRUSTA aluminium body. I have a few lights daisy chained to a failed Utrusta power supply and Ikea is not interested in helping - "discontinued product...". Any advice where to source something of similar size (pref same or smaller) would be greatly appreciated!



  • @Joe
    Sorry no idea where to get an Utrusta power supply



  • @Joe Perhaps have a closer look at the failed supply you will probably find a model number (possibly under an Ikea label) which happens to be a a stock Mean-well supply, Ikea don't make PSUs...



  • Thanks for your tip @zboblamont , found a similar supply on eBay (parameters/size-wise), waiting for it to arrive, fingers crossed... Cheers



  • @Joe Hello, does anyone have an ikea utrusta/ansluta remote controll to sell? I really need one.


Log in to reply
 

Suggested Topics

  • 4
  • 9
  • 1
  • 274
  • 14
  • 2

0
Online

11.2k
Users

11.1k
Topics

112.5k
Posts