Is there any step by step instruction for onboarding process ?

So, I have built prototype boards using nrf9160, flashed, they are working fine, now need to add to nrf Cloud and realized there are few ways to do that, all are not well described.

Is there any easy way to add device using web interface (with no digging into API part) ? When I just add device I get code 40411.

Will highly appreciate if there is step by step easy to follow short instruction how to set that up (including certificates to be added device side if needed)

Parents Reply Children
  • yes, you provisioned your device using the UUID, but your firmware is using the IMEI format.

    you can either rebuild your firmware to use the UUID by setting the following configs:
    CONFIG_NRF_CLOUD_CLIENT_ID_SRC_INTERNAL_UUID=y
    CONFIG_MODEM_JWT=y


    or re-provision your device, adding the following parameters to the device_credentials_installer.py command:
    --id_imei --id_str nrf-

    that will provision your device with the nrf-<IMEI> device ID format.

Related