RSSI for RFM69
See original GitHub issueI read your comments on issue #250 however it appears that it’s an implementation for RF24 networks, not RFM69.
It’s not clear to me if the feature should be implemented in MyController or in the MySensors library. The problem is that the MySensors example sketches are not sending the RSSI value and the LowPowerLab’s readRSSI(); function doesn’t work on the MySensors sketches, I’m getting this error:
error: expected unqualified-id before '.' token
Should this feature request be sent to MySensors or you?
Issue Analytics
- State:
- Created 7 years ago
- Comments:10 (5 by maintainers)
Top Results From Across the Web
RFM69 RSSI value report - MySensors Forum
Is there any way for a gateway to read the RSSI value of the remote RFM69 based sensors? RSSI reporting is already available...
Read more >RSSI and .readRSSI() return different values? #112 - GitHub
The radio.RSSI inform you about signal indicator of the last received packet. The radio.readRSSI() return current signal strength indicationr, ...
Read more >Weak RSSI from RFM69HW - Arduino Forum
I've been working on building a home automation system similar to that built by Eric Tsai, but I'm having some signal issues with...
Read more >https://www.mikrocontroller.net/attachment/263323/...
Driver definition for HopeRF RFM69W/RFM69HW/RFM69CW/RFM69HCW, ... 1 : 0)); } int16_t RFM69::readRSSI(bool forceTrigger) { int16_t rssi = 0; ...
Read more >RFM69 reports lower RSSI from Teensy than from Arduino Mini and ...
RFM69 reports lower RSSI from Teensy than from Arduino Mini and Micro transmitters. I have an issue that puzzles me a lot. Given:...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
OK, it wasn’t clear to me how I can pull out the RSSI value. Fortunately there’s a way of doing that using MySensors 2.1.0 beta: https://github.com/scalz/Mysensors/tree/rfm69_update2 It’s working now and I get the RSSI reports.
@mihaialdea
Yes, you have to change this static value to actual value by using your own logic. AFAIK, There is no RSSI measurement support. User (@cimba007) requested to give workaround for MySensors library. For that reason we introduced this support.
You have to implement measurement code and send the value as mentioned.