Tuesday
Oct272009
MiFi.NET for the Novatel MiFi Mobile Broadband router
Tuesday, October 27, 2009 at 2:03PM I just made my little side project public at CodePlex.com. It's called MiFi.NET and provides a simple yet complete interface to the webservices exposed by the Novatel MiFi Mobile Broadband router.
It's based on the latest specification available from the Novatel Wireless Developer Lounge and I intend to add new features as Novatel makes them available.
Here's a quick shot of the included sample application to give you an idea of the kind of data you can retrieve using MiFi.NET. (Note that the GPS data is missing in this shot because I didn't have it enabled on my device at the time.)
Here's an example showing how to get the current signal strength:
MiFiDevice device = new MiFiDevice(IPAddress.Parse("192.168.1.1"));
MiFiStatus status = device.GetStatus();
Console.WriteLine("Signal Strength: " + status.SignalStrength);
Reader Comments