10 years, 4 months ago.

problem getting RSSI value(xbee) on mbed

hi guys ,

does anyone know how to get rssi value using mbed???

thanks

2 Answers

10 years, 4 months ago.

A quick search finds this program, maybe this will work for you.

Import programXBeeGetRssi

For getting RSSI value from xbee

Accepted Answer

i tried using this library , here's my code .

int main(){ while(1){

rssi=RSSI.getRssi();

pc.printf("RSSI:%ddBm\r\n",rssi);

} }

i can't get the value out , it always return me 0dbm . i don't know what's wrong . can you help ?

posted by elith choo si rui 13 Jan 2014
10 years, 4 months ago.

i tried using this library , here's my code .

int main(){ while(1){

rssi=RSSI.getRssi();

pc.printf("RSSI:%ddBm\r\n",rssi);

} }

i can't get the value out , it always return me 0dbm . i don't know what's wrong . can you help ?