Hi everyone,
I started reading about this value (RSSI) that came out from pin 6 of an Xbee and decided to try getting this value to put a Dbm meter in my labview communication console between 2 xbee.
All my code related to RSSI value from the Xbee is :
int rssival;
int strengh = 52; //Pin connected to pin 6 of XBee
......
rssival = pulseIn(strengh, LOW, 200);
......
TxBuffer[14] = rssival;
....
I made some range test and I received these value:
In the same room : 0
10 meters to 100m : 1 to 20
Not working: 70
Now the question is how to convert these numbers to Dbm????? If those are correct value I should get...
thankx