diff --git a/docs/Examples/MQTTX/MQTTX configuration.md b/docs/Examples/MQTTX/MQTTX configuration.md index d4b4eb8..f7a5be3 100644 --- a/docs/Examples/MQTTX/MQTTX configuration.md +++ b/docs/Examples/MQTTX/MQTTX configuration.md @@ -30,9 +30,11 @@ The information to create a device is -![excell](../img/excell-data.png) - + +| Created | Name | Customer ID | Device ID | MQTT Username | HTTP Username | Password | Organization ID | +|---------|--------------|--------------------------------------|---------------------------------------|--------------------------------------|----------------------------------------|----------|--------------------------------------| +| Yes| test_mqttx | 805c2316-81c9-4cdd-aca5-c09eb2a79f35 | 7fc1bc71-b90f-49e2-8758-54cf1bfb3dc9 | 7fc1bc71-b90f-49e2-8758-54cf1bfb3dc9 | 7fc1bc71-b90f-49e2-8758-54cf1bfb3dc9@devices.data-ingestion.biotz.io|[Password]|dc4b52f7-3035-49c2-914d-946149912810 | + After doing all the above mentioned process, you would have to go to the MQTTX application that you installed previously and click on the "+" icon. diff --git a/docs/Examples/POSTMAN/Getting the token.md b/docs/Examples/POSTMAN/Getting the token.md index 477f3f4..2826081 100644 --- a/docs/Examples/POSTMAN/Getting the token.md +++ b/docs/Examples/POSTMAN/Getting the token.md @@ -13,9 +13,10 @@ First you will have to **create a device**, to create the device, you will have After creating the schema, you will get an excel with some important data that you will have to save for later use. -
-![icon](../img/excell-data.png) -
+ +| Created | Name | Customer ID | Device ID | MQTT Username | HTTP Username | Password | Organization ID | +|---------|--------------|--------------------------------------|---------------------------------------|--------------------------------------|----------------------------------------|----------|--------------------------------------| +| Yes| test_postman | 805c2316-81c9-4cdd-aca5-c09eb2a79f35 | 7fc1bc71-b90f-49e2-8758-54cf1bfb3dc9 | 7fc1bc71-b90f-49e2-8758-54cf1bfb3dc9 | 7fc1bc71-b90f-49e2-8758-54cf1bfb3dc9@devices.data-ingestion.biotz.io|[Password]|dc4b52f7-3035-49c2-914d-946149912810 | Once you have saved all these data, you must follow a few steps to get the token. diff --git a/docs/How-to guides/How to define alarm and triggers.md b/docs/How-to guides/How to define alarm and triggers.md index 3bc30c4..0107c72 100644 --- a/docs/How-to guides/How to define alarm and triggers.md +++ b/docs/How-to guides/How to define alarm and triggers.md @@ -72,9 +72,13 @@ The following are the available logical operators: - NOT AND: The group is considered truthy if none or some, but not all individual conditions are met -NOT OR: The group is considered truthy if none of the individual conditions is met. -
-![Groups](img/groups.png) -
+| CONDITION A | CONDITION B | AND | NOT AND | OR | NOT OR | +|-----------|-----------|-----------|-----------|-----------|-----------| +| 0 | 0 | 0 | 1 | 0 | 1 | +| 1| 0 | 0 | 1 | 1 | 0 | +| 0 | 1 | 0 | 1 | 1 | 0 | +| 1 | 1 | 1 | 0 | 1 | 0 | + Conditions and groups can be nested to build complex rules. ### Notifications