I want to create a map of RSSI in an open area around a pair of broadcasting WiFi antennae. These antennae are connected to a board running debian.
I want to be able to set my laptop x meters away from the "router" and start logging the RSSI value along with the distance (which the user will enter when issuing the command on the cli) over a period of time. The period of time could be set automatically (hard coded or as a cli argument) or could just be limited by the user killing the process.
I want to create a csv file of all the RSSI values against the distance so essentially the csv file would have 2 columns, one for distance and one for RSSI. From the cli the user could enter something like:
rssi_script -f rssi.csv -d 20
(I'm not sure which language to use, script it in the shell or bash or python or just write a small program in c)
The following cli command outputs the signal level (RSSI)
iwconfig wlan0 | awk -F'[ =]+' '/Signal level/ {print $7}\'