"Could you explain what you’re doing for the uninformed? ;>) "
Generally make a wireless “routerbot” as cheaply and simply as possible. Some powerful routers like the Buffalo ones in bridging mode might get 2,500’ line of sight range. Google for wifi shootout to see what large antennas can do. Also IP cams can be plugged directly into routers to give the bot some vision capability.
“I take it you are using the Arduino Ethernet shield, which is wired into the wireless router (serial?).”
The connection between the ethernet shield and the router is an ethernet connection (which can be a piece of cat3 four conductor phone wire with RJ45 connectors on each end). The ethernet shield functions similar to a network card in a pc. No RS232 type serial communication involved.
“You run the HTML code on the router (?).”
No, the router is stock with no mods. The HTML is just copy/paste in notepad on the desktop. If desired the arduino can serve up such simple web pages.
“The C code in the Arduino accesses the router (?).”
The arduino/ethernet shield communicates with the router just like a pc with a network card. The router sees the arduino as another connected pc or similar. The arduino handles the network traffic as well as the I/O with external devices
“A PC browser opens the router page at 192, 168, 1, 102 (or one of those numbers in the program.”
Yes, this is the IP address assigned to the arduino/ethernet shield. I used this as when the router is disconnected from the internet, as DNS lookups are not possible when disconnected. If the router was bridged to another router connected to the internet, then typical URLs like zoomkat.no-ip.com can be used in the web page. Port fowarding can be used on the net connected router so a connection to the arduino can be made from most anywhere, even a web connected Iphone on the other side of the world.
“The parameters are then accessible on the PC.”
“Can you elaborate?”
This particular web page is set up for only sending commands and receiving webcam feeds if desired. If one wants to also obtain data from the arduino and display it on the web page, then the page would be made with two frames to handle the two types of traffic. Not difficult, just use notepad and a little html knowledge.
“Can something similar be done with the Lantronix?”
I’m not familiar with the lantronix protocols, but I would think it would be more involved and difficult to make into a user GUI, particularly a web based one.
“(And I realize we will be getting a PC program to work as a control program from LM).”
I made some comments on the project when it was announced, but they immediately disappeared. As with other projects, I guess I’ll sit back and see how it goes.
“Looking to learn a little bit more…”
Lots of neat stuff out there.