Difference between revisions of "Setting up Wifi Scanner"

From Lofaro Lab Wiki
Jump to: navigation, search
(Building Wifi Scanner)
(Running the Wifi Scanner)
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
 
== Running the Wifi Scanner ==
 
== Running the Wifi Scanner ==
  
Now that we have built the wifi scanner we can now test to see how well it works. If you are running on a Virtual Machine or do not have a Wireless card on your computer, you will need to get a USB Wireless Receiver. Here are the steps:
+
The wifi scanner is created to allow for multiple wifi dongles to be run. This allows to get data much faster than with a single dongle.
  
1.) Open a new terminal.
+
The wifi scanner has two parts, the trigger and the wlan nodes that will get MAC address and signal strength and write this information to a ROS topic.
  
2.) Navigate to the directory that you built wifi_scanner. For Example:
+
1.) To start the trigger that controls when the wifi dongles will run, type:
  
  cd ~/catkin_ws/src/MILES/wifi_scanner/bin
+
  rosrun wifi_scanner trigger wlan0 wlan1
  
3.) Now we can run the wifi_scanner, though make sure it is run as root.
+
The wlanN refers to the wifi dongle's network identity in Linux.
  
  sudo ./test_wifi_scanner
+
 
 +
2.) Next lets start a scanner. Open a new terminal and type:
 +
 
 +
  sudo -s
 +
  rosrun wifi_scanner scan_wifi -i wlan0
 +
 
 +
 
 +
3.) You should have as many wlan nodes as you have wifi dongles. Open another terminal and type:
 +
 
 +
  sudo -s
 +
  rosrun wifi_scanner scan_wifi -i wlan1
 +
 
 +
 
 +
You now have two nodes that will write to the same topic. The trigger will time the two nodes in such a way as to double the speed at which we can get data.

Latest revision as of 21:16, 17 March 2015

Running the Wifi Scanner

The wifi scanner is created to allow for multiple wifi dongles to be run. This allows to get data much faster than with a single dongle.

The wifi scanner has two parts, the trigger and the wlan nodes that will get MAC address and signal strength and write this information to a ROS topic.

1.) To start the trigger that controls when the wifi dongles will run, type:

 rosrun wifi_scanner trigger wlan0 wlan1

The wlanN refers to the wifi dongle's network identity in Linux.


2.) Next lets start a scanner. Open a new terminal and type:

 sudo -s
 rosrun wifi_scanner scan_wifi -i wlan0


3.) You should have as many wlan nodes as you have wifi dongles. Open another terminal and type:

 sudo -s
 rosrun wifi_scanner scan_wifi -i wlan1


You now have two nodes that will write to the same topic. The trigger will time the two nodes in such a way as to double the speed at which we can get data.