Anyone had experience using a USB Mobile Broadband on Windows IoT with the Raspberry Pi2 already?
I have a Huawei datacard in the Windows IoT and appears as HUAWEI Mobile on connected devices but I'm unable to see the device on the wifimanager.htm admin page.
Don't even appear on the Device Manager list. Is this lack of drivers?
I was looking for a solution too, and I have finally found one. I hope the following will help you!
For the record, I used a Vodafone (Huawei) K5150, "officially" supported and Microsoft verified, according to the hardware compatibility list: https://developer.microsoft.com/en-us/windows/iot/win10/supportedinterfaces. The device was recognized and visible on the portal through an hdmi screen. Anyway, the raspberry couldn't get internet access.
Here is what I did to make it work:
netsh
command and the import
or dump
sub-command, but it doesn't work for broadband devices. Add Profile Failure: Invalid Profile XML.
netsh mbn show readyinfo interface="Cellular"
. The correct interface (in my case it's "Cellular") can be retrieved with the command netsh mbn show interfaces
(mbn
standing for Mobile Broadband I suppose). The subscriber ID, with other useful information, is displayed and you can copy it the to the xml file on your raspberry.netsh mbn add profile interface="Cellular" name="profile.xml"
and netsh mbn connect interface="Cellular" connmode=name name=ProfileName
.You mobile broadband key should now be activated and the raspberry should automatically connect to it at start.
Here are the few links that helped me a lot: