Greg Klein's Blog

Posts Tagged ‘wifi

Using the Ubiquiti as a Yggdrasil Sensor

leave a comment »

My last post focused on using the Ubiquiti Wifi Access Point as a gateway to connect a SunSPOT to the internet (in this case, Twitter).

But we can also use the Ubiquiti as a sensor. The immediate utility that appeared to me was to use the Ubiquiti to scan for wireless networks and to get their signal strength. So let’s get started.

If you’re using a Linux box at home, you can scan for wireless networks using the command

root@localhost:~# iwlist scan

You’ll see an output something like this:

          Cell 01 - Address: 00:1E:4E:AB:CC:DF
                    ESSID:"Sun"
                    Mode:Master
                    Channel:1
                    Frequency:2.412 GHz (Channel 1)
                    Quality=97/100  Signal level:-29 dBm  Noise level=-127 dBm
                    Encryption key:on
                    IE: Unknown: 0007426967526F6F6D
                    IE: Unknown: 010482848B96
                    IE: Unknown: 030101
                    IE: Unknown: 2A0100
                    IE: Unknown: 2F0100
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : CCMP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: Unknown: 32080C1218243048606C
                    IE: Unknown: DD0700039301660000
                    IE: Unknown: DD06001018020100
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
                              9 Mb/s; 12 Mb/s; 18 Mb/s; 24 Mb/s; 36 Mb/s
                              48 Mb/s; 54 Mb/s
                    Extra:tsf=00000017288f01d0
                    Extra: Last beacon: 3492ms ago

Now there are three lines in this that we’re interested in. The first one states the MAC address of our access point. Next, we want the line describing the ESSID (the “name” of the network), and, finally, the line showing us how strong our signal is, in dBm.

Now whenever I have a bit of text parsing to do, I always go to Perl. Unfortunately, I haven’t got enough space on the Ubiquiti’s measly 4 MB of flash to install Perl. Instead, I’m writing all of this in Bash. So I wrote a small shell script in Bash that parses the output from our iwlist command and prints only the useful information: ap_scan_and_format.sh.

#!/bin/bash

aplist=$(iwlist ath0 scan|grep 'Address\|Signal\|ESSID')

IFS=$'\n'
for line in $aplist; do
	if [[ "$line" =~ Address ]]
		then
			echo $line | sed 's/://g' | sed 's/.*s //g'
	fi
	if [[ "$line" =~ ESSID ]]
		then
			echo $line | sed 's/.*:"//g' | sed 's/"//g'
	fi
	if [[ "$line" =~ Signal ]]
		then
			echo $line | sed 's/.*Signal level=//g' | sed 's/ dBm.*//g'
			echo
	fi

done
echo "done"

Alright, let’s walk through that really fast. First thing I do is grab the output of our iwlist command and extract the useful lines (the ones containing Address, Signal, or ESSID), and put all of that into variable $aplist. I then step through the lines one by one and extract only the most useful information.

So the output now would look something like this:

001E4EABCCDF
Sun
-29

Neat. Now I’ve got to come up with a clever way to send it back to our SunSPOT.

head -n 1 /dev/ttyS0 > /dev/null
./ap_scan_and_format.sh > /dev/ttyS0

So now I just wait for the serial to hear a new line character ‘\n’ and then I can pipe the nicely formatted list back to my SunSPOT. Perfect.

Now I need a bit of logic over on my SunSPOT side of things.

        out.write("\n".getBytes());
        do {
            byte[] buffer = new byte[in.available()];
            in.read(buffer);
            read += new String(buffer);
        } while (read.indexOf("done") == -1);

That’s all we need to send the newline character and read in our list of APs.

Now to get that data back to sensor.network. I’m running a project called Yggdrasil on my Spot so that I can report my sensor readings back to sensor.network.com.

A bit of code later and I can get a nice look at how my wifi signal strength varies over time.

wifi_chart

How about for all of the access points in the building?
All_Wifi_APs
The cool thing about using sensor.network is that I can now, say, try to correlate these readings against humidity, or other sensor readings in the area.

Written by gregklein

August 4, 2009 at 3:26 pm

Twitter, Ubiquiti, and Spots

leave a comment »

Okay, so if you haven’t yet, please read my last blog post.

Twitter has this great API that makes it super easy to “tweet” (I can’t believe I just used the word tweet). The coolest thing is, you hardly need any extra software, which is a huge plus, especially on the Ubiquiti Nanostation which only has 16 MB of RAM and 4 MB of flash. I read this great guide that uses cURL. Unfortunately, when I tried to install cURL on my Ubiquiti, opkg tried to install a couple MB to my flash; way too much. Curl was not feasible given my limited hardware.

Fortunately, there’s a smaller program that can accomplish the same thing: wget. OpenWRT already has wget installed, but it’s a smaller version of wget that doesn’t have everything we need (it’s actually part of BusyBox).

Now, one of the reasons that cURL is so large is because it wants SSL. We don’t need that, so we can install the package wget-nossl.

root@OpenWrt:~# opkg install wget-nossl -force-overwrite

The -force-overwrite is required or it’ll complain that wget is already installed:

* Package wget-nossl wants to install file /usr/bin/wget
But that file is already provided by package * busybox

Anyway, once we’ve got wget installed, we can post a message to Twitter like this:

wget --http-user=wifispaught --http-password=password --post-data=status="test!" http://twitter.com/statuses/update.xml

Now let’s see if we can’t add a Spot to the mix.

StreamConnection serialStream = (StreamConnection) Connector.open("edemoserial://usart?baudrate=9600&databits=8&stopbits=1&parity=none");
OutputStream out = serialStream.openOutputStream();
out.write(("wget --http-user=wifispaught --http-password=mypassword --post-data=status=\"Hello, world!\" http://twitter.com/statuses/update.xml\n").getBytes());

Okay, we need some code to run on the Ubiquiti side of things:

root@OpenWrt:~# head -n 1 /dev/ttyS0 | ash

This will read a line off of the serial connection (ttyS0), and then pipe the output into ash (a simple shell included with BusyBox). Since the SunSPOT is sending the wget command, there’s no need to do any parsing or logic.

Now I’ve got a SunSPOT posting to Twitter via wifi.

If you’re interested, here’s the twitter feed of the spot.

Written by gregklein

July 31, 2009 at 4:39 pm

Posted in java, sun

Tagged with , , , ,

Ubiquiti and Spots

leave a comment »

A significant part of sensor networks, is, well, the network. The radio on the SunSPOT is designed for low power consumption, and works well in relatively short ranges, something like 50-100 meters at the very most. When a stronger radio is required, you’ve got to do something else.

Spot_and_ubnt

The black PCB in the picture is an Ubiquiti NanoStation2, with a range of several miles over Wifi. Below, of course, is a SunSpot. They’re talking to each other over serial, which is provided on the Ubiquiti (actually, as it would turn out, most routers seem to have serial on the board). To make it a bit easier to use, I put OpenWRT on it so that I could take advantage of their package management (I can run Perl!), and other niceties.

Anyhow, the whole thing was remarkably easy to do once I disabled the existing output on the serial. Apparently OpenWRT, by default, has a console running on the included serial.

I had to edit /etc/inittab and remove the line:

ttyS0::askfirst:/bin/ash –login

Once the serial was free, I just set the parameters using stty, and can now write to the serial using the command

cat > /dev/ttyS0

And read from it with

cat /dev/ttyS0

Writing to serial is easy with a Spot:

StreamConnection serialStream = (StreamConnection) Connector.open("edemoserial://usart?baudrate=9600&databits=8&stopbits=1&parity=none");
InputStream in = serialStream.openInputStream();
OutputStream out = serialStream.openOutputStream();

Pins D0 and D1 are Rx and Tx, respectively.

I think I’ll tie it up with some Perl to report values back to sensor.network.

Written by gregklein

July 30, 2009 at 5:18 pm

Posted in java, spaughts, sun

Tagged with , , , ,