Quantcast
Channel: Outernet | Discussions - Latest topics
Viewing all articles
Browse latest Browse all 1270

My logging script for RSL and RSSI

$
0
0

@CRCasey wrote:

Just for information this script formats RSL and RSSI for import into a standard spreadsheet.

!/bin/sh

sleep 60

while true
do
a=$(wget -q -O - http://127.0.0.1/DIRECT/getTunerStatus | jq .result.snr)
echo -n $(date) ", "
echo -n $a
echo -n ", "
a=$(wget -q -O - http://127.0.0.1/DIRECT/getTunerStatus | jq .result.rssi)
echo $a
sleep 60
done >> /mnt/downloads/RSL.csv

you place this in /mnt/conf/bin as the file user.sh with chmod 755.

It will log to /mnt/downloads/RSL.csv

You can use this in any spreadsheet to map your rsl over time.

If you don't understand what that means let me know I will explain better.

-Cecil

Posts: 5

Participants: 2

Read full topic


Viewing all articles
Browse latest Browse all 1270

Trending Articles