Webserver on the NXT

September  2011

 

For this project I wanted to build a webserver using the new Dexter Industries Wifi sensor for the NXT. Dexter have produced a very exciting wifi sensor that you program through the RS485 port on port 4 of your NXT. The RS485 port can communicate with the wifi sensor at speeds up to 921600 baud, so your NXT can have high-speed Internet access!


The wifi sensor is cleverly packaged to communicate over the RS485 port using the classic AT command protocol which should be familiar to anyone who has used modems back in the 1990s (remember them). Essentially you send commands to the wifi sensor using ASCII text and the sensor responds over the RS485 link.


Dexter have not yet officially released this sensor, so everything I’ve done here is based off a prototype unit they kindly sent to me to evaluate. Treat this as an experimental project. Based on what I’ve seen this sensor has huge promise - NXT’s connected directly to a wireless network open up a whole new arena of robotics projects! But it is one of the most complex sensors yet attached to the NXT, and using it requires some extensive programming knowledge. Hopefully the examples I show below make life easier for all you hobbyists out there!


Wifi driver API

Based on work done by Xander Soldaat I created a set of NXC functions to speak to the Dexter wifi. They wrap the AT command exposed by the wifi sensor in NXC function calls. There is minimal error checking performed in this API; most of the function calls return a string variable. It’s up to you to make sure that the correct result was received!


The basic flow in using the Wifi sensor is:

  1. 1.Initialise the RS485 port on the NXT

  2. 2.Disable verbose mode on the wifi sensor (by default the sensor echoes back text strings for status messages and this is unnecessary)

  3. 3.Tell the wifi sensor what network SSID to associate with

  4. 4.Set the WPA2 encryption passphrase (this takes a while as the wifi sensor has to compute the key and store it internally)

  5. 5.Enable DHCP to obtain an IP address from the network.

  6. 6.Start a server listening on port 80.

  7. 7.Consume data on the RS485 port which is sent by the wifi sensor.

  8. 8.Send an HTML page back to the wifi sensor on the RS485 port.


This appears simple, but the devil is in the details!


Building the webserver

The source code for the webserver is in a set of files which are built together to create the final executable. The files are:


  1. diwifidriver.nxc: this is the core wifi driver file. It contains all of the functions that make it easy to work with the wifi sensor.

  2. logging.nxc: the standard logging library I wrote about in a previous post that creates a user-readable log file so you can debug the webserver.

  3. listener.nxc: the web server core code. You will need to enter the SSID and WPA2 passphrase for your wireless network on line 31 and 32 before you can compile this file.


The steps to getting a webserver up and running on your network on your NXT are:

  1. 1.Buy a Dexter Industries wifi sensor (obviously!)


  1. 2.Down load the latest version 1.31 NXC enhanced library and flash the NXT with the updated firmware.


  1. 3.Download the NXC 1.2.1 r4 compiler from John Hansen’s website.


  1. 4.Attach the DiWifi to port 4 on the NXT (it will only work on port 4)


  1. 5.Edit listener.nxc to set your SSID and WPA2 details. The Diwifi sensor supports WEP and WPA2 networks, but my code is only written for WPA2 networks.


  1. 6.Build the webserver as follows: nbc -r -EF listener.nxc. It will pull in the diwifidriver.nxc and logging.nxc files as needed.


  1. 7.The display on the NXT will show status messages as it initialises the DiWifi driver and connects to your network. You should see the MAC address for the wifi sensor displayed, and after some time an IP address displayed, as follows:


  1. 8.If you don’t see a MAC address displayed on the NXT screen then the NXT is not communicating with the wifi sensor correctly (probably incorrect baud rate set on line 58 of the listener.nxc file). Look at the listener.txt logfile on the NXT for clues - or you can mail it to me.


  1. 9.If you see a MAC address but do not see an IP address then the NXT can talk to the wifi sensor, but the wifi sensor didn’t connect to the wireless network for some reason. Check that you entered the SSID and WPA2 passphrase correctly.


  1. 10.When you see the IP address displayed you should be able to ping it from a terminal window on your PC (assuming that you are on the same network).


  1. 11.Open a web browser and try connecting to the IP address displayed; you should see a simple web page displayed!


  1. 12.If the browser connection fails, and you are comfortable on the command line, try telnet to port 80 and type “GET /” to simulate requesting a webpage. You should see HTML echoes back in the terminal window.


  1. 13.If all this fails then reset your wireless network (i.e. power cycle your wireless router), turn off the NXT and the DiWifi sensor, turn them all on again and try again :)



Utilities

  1. autoconn.nxc: this sets up the wifi sensor to attach to the wireless network and stores this as the default profile in the non-volatile RAM of the wifi sensor. What does this mean? Computing the WPA2 encryption key takes time so the wifi sensor will cache it in NVRAM. You can then #ifdef out lines 339-346 in the listener.nxc file to speed up the startup time of the webserver.

  2. sendcommands.nxc: a simple utility that reads AT commands a line at a time from a file named atcmds.txt on the NXT and then sends them to the DiWifi sensor. This lets you test and experiment with the sensor. The reply from the sensor is stored in results.txt file on the NXT.

  3. atcmds_setup.txt: this is a sample AT command script for the sendcommands.nxc program. It sets up the Wifi sensor; you’ll need to edit it to enter your SSID and WPA2 passphrase. Save it as atcmds.txt and then upload it to your NXT.

  4. atcmds_http.txt: this is a sample AT command script that opens a HTTP connection to a website.

  5. atcmds_dnslookup.txt: a sample AT command script that shows how to do DNS domain name lookups on the sensor.



Known bugs?

There are definitely some issues with my code. I absolutely promise you that there are bugs here - consider this an alpha release! If you spot any please let me know!


  1. The wifi sensor can occasionally fail to connect to a wireless network. If this happens restart your wireless network and try again.

  2. The parseHTTPRequest() function in listener.nxc is not used; it should work but as of right now it’s not fully debugged.

  3. The sendWebpage() function in listener.nxc returns a simple static webpage.

  4. The default baud rate of the Wifi sensor is 9600 baud at 8N1. This is pretty slow, so I’ve set mine to run at 115,200 baud.

  5. I often see the RS485 connection losing data from the wifi sensor to the NXT. I’m not sure why this is happening. It seems to be an intermittent problem, and could be a bug in my code, or a bug in the NXC firmware. If you want to debug this I wrote a simulator (simulate.nxc) that pretends to be a wifi sensor. Install this program on a second NXT connected to the NXT running the webserver on port 4. All going well you should be able to simulate sending a request and receiving a reply.

  6. Sending the webpage back to a browser works.... sometimes. Often the browser seems to hang as if the data connection wasn’t closed. Not sure why this happens, but I’ve found that starting a second connection to the wifi sensor will “unjam” the first connection and the browser will display the webpage.

  7. The wifi sensor uses a 9V battery for power. And it will go through them quickly! I hacked a wall-wart 9V transformer to attach onto the battery clip so I could do extensive testing.


 

Last updated 9 September, 2011


All content © 2008 2009 2010 2011 Mark Crosbie  mark@mastincrosbie.com


LEGO® is a trademark of the LEGO Group of companies which does not sponsor, authorize or endorse this site. This site, its owner and contents are in no way affiliated with or endorsed by the LEGO Group. For more please read the LEGO Fair Play policy.