Azure IoT Hub Device Provisioning Service
Azure IoT Public Model Repository
Prepare the Device.
Hardware
Prepare EIS-D210 and connect with Power, HDMI, Ethernet.
Note: If you need any other information please reference the link.
Set up a DPS
1. Follow the commands to create a
Resource Group
、
an
Iot Hub
and a
Device Provisioning
Service
2. Get the connection string for the IoT hub and place it into a variable .
3. Link the IoT hub and the provisioning service
4. Get ID Scope
Copy the ID Scope key.
az group create --name my-sample-resource-group --location centralus
az iot hub create --name my-sample-hub --resource-group my-sample-resource-group --location
az iot dps create --name my-test-dps --resource-group my-sample-resource-group --location ce
$hubConnectionString
=
$(az iot hub show-connection-string --name my-sample-hub --key primary
az iot dps linked-hub create --dps-name my-test-dps --resource-group my-sample-resource-grou