Dears,
I’m going to get the data directly from the EMOS windgauge sensor (catalog number E06016) without the E6016 weatherstation using the rtl_433 on a esp32 with cc1101 receiver.
Before buying it, I assumed the procotol is supported (since some sensor from E6016 are supported by rtl_433), but it seems to be not the case.
The signal can not be parsed:
{
“model”: “unknown”,
“protocol”: “signal parsing failed”,
“duration”: 823996,
“rssi”: -64,
“pulses”: 726
}
As already said ESP32 + CC1101 (ebyte) are used with esp32dev-rtl_433
cc1101 → esp32
GDO0-> 12 (HSPI_MISO)
CSN → 5 (VSPI_CS)
SCK → 18 (VSPI_CLK)
MOSI → 23 (VSPI_MOSI)
MISO → 19 (VSPI_MISO)
GDO2 → 27
I need windspeed information only.
- Possibility 1: Disasseble the sensor, build in a ESP32 and just trying to count the pulses from wind-sensor (unfortunatelly the range is reduced, but should be sufficient for my use-case)
- Possibility 2: Decoding raw-signal
- How difficult would be to decode the raw-signal ?
- What are the steps to go ?