Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
11 years, 1 month ago.
problem getting RSSI value(xbee) on mbed
hi guys ,
does anyone know how to get rssi value using mbed???
thanks
2 Answers
11 years, 1 month ago.
A quick search finds this program, maybe this will work for you.
Import programXBeeGetRssi
For getting RSSI value from xbee
11 years, 1 month 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 ?