@@ -408,7 +408,7 @@ The device monitor can be found at: `http://localhost:3000/device/monitor`
408408
409409You can check if the IoT Agent is running by making an HTTP request to the exposed port :
410410
411- # ### :one: Request:
411+ # ### 1️⃣ Request:
412412
413413` ` ` console
414414curl -X GET \
@@ -494,7 +494,7 @@ within this tutorial as we will be provisioning each device separately.
494494This example provisions an anonymous group of devices. It tells the IoT Agent that a series of devices will be sending
495495messages to the `IOTA_HTTP_PORT` (where the IoT Agent is listening for **Northbound** communications)
496496
497- # ### :two: Request:
497+ # ### 2️⃣ Request:
498498
499499` ` ` console
500500curl -iX POST \
@@ -549,7 +549,7 @@ Three types of measurement attributes can be provisioned:
549549> **Note**: in the case where individual `id`s are not required, or aggregated data is sufficient the `attributes` can
550550> be defined within the provisioning service rather than individually.
551551
552- # ### :three: Request:
552+ # ### 3️⃣ Request:
553553
554554` ` ` console
555555curl -iX POST \
@@ -604,7 +604,7 @@ reading `c` with the context attribute `count` (which is defined as an `Integer`
604604You can simulate a dummy IoT device measurement coming from the **Motion Sensor** device `motion001`, by making the
605605following request
606606
607- # ### :four: Request:
607+ # ### 4️⃣ Request:
608608
609609` ` ` console
610610curl -iX POST \
@@ -627,7 +627,7 @@ raising a request with the Orion Context Broker.
627627You can see that a measurement has been recorded, by retrieving the entity data from the context broker. Don't forget to
628628add the `fiware-service` and `fiware-service-path` headers.
629629
630- # ### :five: Request:
630+ # ### 5️⃣ Request:
631631
632632` ` ` console
633633curl -X GET \
@@ -686,7 +686,7 @@ invoked. The example below provisions a bell with the `deviceId=bell001`. The en
686686` http://iot-sensors:3001/iot/bell001` and it can accept the `ring` command. The `transport=HTTP` attribute defines the
687687communications protocol to be used.
688688
689- # ### :six: Request:
689+ # ### 6️⃣ Request:
690690
691691` ` ` console
692692curl -iX POST \
@@ -719,7 +719,7 @@ directly to the IoT Agent's North Port using the `/v2/op/update` endpoint. It is
719719invoked by the context broker once we have connected it up. To test the configuration you can run the command directly
720720as shown :
721721
722- # ### :seven: Request:
722+ # ### 7️⃣ Request:
723723
724724` ` ` console
725725curl -iX POST \
@@ -748,7 +748,7 @@ If you are viewing the device monitor page, you can also see the state of the be
748748
749749The result of the command to ring the bell can be read by querying the entity within the Orion Context Broker.
750750
751- # ### :eight: Request:
751+ # ### 8️⃣ Request:
752752
753753` ` ` console
754754curl -X GET \
@@ -782,7 +782,7 @@ parsing NGSI to JSON is delegated to the IoT Agent itself. Provisioning a device
782782measurements is merely a matter of making an HTTP POST request with both `attributes` and `command` attributes in the
783783body of the request.
784784
785- # ### :nine: Request:
785+ # ### 9️⃣ Request:
786786
787787` ` ` console
788788curl -iX POST \
@@ -820,7 +820,7 @@ curl -iX POST \
820820
821821Similarly, a **Smart Lamp** with two commands (`on` and `off`) and two attributes can be provisioned as follows :
822822
823- # ### :one::zero: Request:
823+ # ### 1️⃣0️⃣ Request:
824824
825825` ` ` console
826826curl -iX POST \
@@ -855,7 +855,7 @@ curl -iX POST \
855855
856856The full list of provisioned devices can be obtained by making a GET request to the `/iot/devices` endpoint.
857857
858- # ### :one::one: Request:
858+ # ### 1️⃣1️⃣ Request:
859859
860860` ` ` console
861861curl -X GET \
@@ -886,7 +886,7 @@ Therefore this section of registering and invoking commands **duplicates** the i
886886
887887To invoke the `ring` command, the `ring` attribute must be updated in the context.
888888
889- # ### :one::two: Request:
889+ # ### 1️⃣2️⃣ Request:
890890
891891` ` ` console
892892curl -iX PATCH \
@@ -910,7 +910,7 @@ If you are viewing the device monitor page, you can also see the state of the be
910910
911911To invoke the `open` command, the `open` attribute must be updated in the context.
912912
913- # ### :one::three: Request:
913+ # ### 1️⃣3️⃣ Request:
914914
915915` ` ` console
916916curl -iX PATCH \
@@ -930,7 +930,7 @@ curl -iX PATCH \
930930
931931To switch on the **Smart Lamp**, the `on` attribute must be updated in the context.
932932
933- # ### :one::four: Request:
933+ # ### 1️⃣4️⃣ Request:
934934
935935` ` ` console
936936curl -iX PATCH \
0 commit comments