chickenhouse/wifi_fieldstrength_test.py

11 lines
203 B
Python
Raw Normal View History

#!/usr/bin/python2
from wifi_fieldstrength import wifi_fieldstrength
from time import sleep
wf = wifi_fieldstrength("wlan0")
while(True):
print "Field strength: " + str(wf.read()) + " dBm"
sleep(1)