I just received a Nano 33 BLE Sense. Using Boards Manager, I have installed "Arduino nRF528x Boards" and selected the Nano 33 BLE. However, when I connect the board via USB, the driver does not load. In Device Manager, it shows up as "CDC DEVICE" under "Other devices" (with no driver found). The VID/PID string is "VID_2341&PID_805A". I can't find a .inf for that combo anywhere in the Arduino install locations. I am using Windows 7.
Anybody know where I can find this driver? Thanks.
I do not have a solution for you but would like to add that I've experienced the same issue. I haven't found a Windows 7 driver that works with the Nano 33 BLE yet.
@echo off
setlocal
for /f "tokens=4-5 delims=- " %%i in ('ver') do @(if %%i==Version (set VERSION=%%j) else (set VERSION=%%i))
if %VERSION% GEQ 10 (
exit /b 0
)
endlocal
REM dpinst /PATH has problems with relative paths, so use absolute path.
if "%PROCESSOR_ARCHITECTURE%" == "AMD64" (
dpinst-amd64.exe %ARGS%
) ELSE IF "%PROCESSOR_ARCHITEW6432%" == "AMD64" (
dpinst-amd64.exe %ARGS%
) ELSE (
dpinst-x86.exe %ARGS%
)
Have the same problem with a Nano 33 BLE I received today. The only solution I found was to press the reset button twice, which installed the driver correctly, previously it tried installing and failed.
Have uploaded and run the "blink" sketch ok, although it changed the com port from 12 to 13 for some reason. Will see when I restart everything tomorrow if it still all works.