03-16-2025, 06:27 PM
I have done some research on this board for an email support request last summer:
AFAICS, your board runs with ArduinoBle, so it is supported in the same way as the IoT or the UNO R4. You need to add your board to
in “src/phyphoxBle.h” rather than anywhere else there. The board identifier should be SAMD_MKRWIFI1010, AFAICT.
A similar change needs to be made in “src/phyphoxBLE_NanoIOT.cpp”. Finally, you might need to add the correct ID to the “architectures=” line in “library.properties”. (As it appears to be samd, it’s already in…)
You’ll find at https://phyphox.org/forums/showthread.ph...38#pid3638 what needed to be done for the UNO R4 Wifi.
I have never heard back, so I cannot tell if it worked – and that's why we have not applied such a change yet as we do not own this board.
AFAICS, your board runs with ArduinoBle, so it is supported in the same way as the IoT or the UNO R4. You need to add your board to
Code:
#elif defined(ARDUINO_SAMD_NANO_33_IOT) || defined(ARDUINO_UNOR4_WIFI)
#include <ArduinoBLE.h>
#include "phyphoxBLE_NanoIOT.h"
#else
in “src/phyphoxBle.h” rather than anywhere else there. The board identifier should be SAMD_MKRWIFI1010, AFAICT.
A similar change needs to be made in “src/phyphoxBLE_NanoIOT.cpp”. Finally, you might need to add the correct ID to the “architectures=” line in “library.properties”. (As it appears to be samd, it’s already in…)
You’ll find at https://phyphox.org/forums/showthread.ph...38#pid3638 what needed to be done for the UNO R4 Wifi.
I have never heard back, so I cannot tell if it worked – and that's why we have not applied such a change yet as we do not own this board.