-
-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support of Klimalogg Pro Sensor #143
Comments
ASK is similar to FSK so it is supported The decoder is included within the source code, but it is listed as disabled here - rtl_433_ESP/src/rtl_433/devices/klimalogg.c Line 112 in 276bc2c
The disabled flag was copied from the rtl_433 package - https://github.com/merbanan/rtl_433/blob/f23b80f7975ebb49242e4017aafed870c35e30d0/src/devices/klimalogg.c#L112 You could try flipping disabled to 0, and rebuilding. As it was disabled during the build process, and is the only device leveraging OOK_PULSE_NRZS I'm not 100% confident it will work, as the code would not have been exercised during testing. But give it a try, worst case is that you would need to undo it. |
How can I get a verbose log from rtl_433_ESP in the OMG console like this?
I tried several compiler directives without success. Help appreciated! Regards, Christoph |
It’s not wired to do that the omg serial console uses a different logging library to achieve the web console |
I now understand, that the rtl log is going to the serial console, but where can I find a description of the compiler directives to trace the rtl_433_ESP activities inside OMG on my LilyGo 868 MHz board. Regarding my issue I checked the source code and figured out, that the klimalogg protocol is in the copy sequence for OOK modulation, so it cannot be activated with FSK. For debugging with my sensors I need some hints for tracing and debugging. |
Found the compiler directives in the ReadMe!👍 |
As I’m using the chipset signal demodulator for FSK and OOK, it is not feasible to receive both at the same time. |
I know that and I tried to create a binary with klimalogg being activated while FSK is activated, too.
So if I compile with May be I don't understand you right. Should I compile with OOK and the modulation code for ASK will nevertheless be activated? I did so and I've got these results:
|
Current Situation
In the current version the sensor
[150]* Klimalogg
from merbanan's rtl_433 project is not listed as supported. In the source code I see, that it has OOK_PULSE_NRZS modulation. From my running instance of rtl_433 I get these MQTT messages:There I see
MOD = ASK
. Is this supported by rtl_433_ESP?Proposed Change
Support the Klimalogg sensor like in rtl_433. The advantage is to get data from the following sensors:
In my home brewing environment I could then replace one instance of rtl_443 (for 868 MHz) by a LilyGo Lora 32 board for 868 MHz.
Additional Context
No response
The text was updated successfully, but these errors were encountered: