This project was created to control Ikea Omlopp/Utrusta lights by Raspberry pi. The original remote has one Button. With every push the lights cycle -> 50% -> 100% -> 50% -> off
The original remote send a series of data icluded two own address bytes.
- example: 0x55 0x01 0xD0 0x9A 0x02 0xAA (0xD0 & 0x9A my addressbytes)
- Raspbery pi 3B+
- CC2500 Transiver module (WLC24D) ebay
- Copy 'ansluta-python' folder to Raspberry /usr/src/
- got to folder:
cd usr/src/ansluta-python
- listen for your addressbytes:
python ansluty.py l
- press button on original remote
- note your found address Bytes (0xd0 and 0x9a)
replace 0xD0 and 0x9A with your address bytes!
- lights off
python ansluta.py 0xD0 0x9A 0
- lights 50%
python ansluta.py 0xD0 0x9A 50
- lights 100%
python ansluta.py 0xD0 0x9A 100