I’m searching for enthusiasts who are interested in decoding and encoding X3D messages. I’m owner of a bunch of thermostats and switch actors. I’ve also done a lot of research and created a PR to the rtl_433 to decode/dump some basic data.
https://github.com/mr-sven/rtl_433/blob ... dore_x3d.c
At the moment I’m working hard on identifying the message structure and find out what all the registers contain. Via second hand I was also able to own a Tydom.
The goal is to build a small ESP device as a Gateway and simulate devices.
Here are the basic protocol settings:
- Modulation: FSK PCM
- Frequency: 868,95 MHz
- FSK Frequency Deviation: 80 kHz
- 25 µs bit time
- 40000 baud
- based on Semtech SX1211
- manual CRC
- CCITT Data Whitening
- Preamble {32} 0xaaaaaaaa
- Syncword {32} 0x8169967e
- Length {8}
- Payload {n}
- CRC16(Poly=0x1021,Init=0x0000)
https://github.com/mr-sven/x3d-rfm-esp32