Skip to content

Commit

Permalink
Change some screenshots for tables made with code
Browse files Browse the repository at this point in the history
  • Loading branch information
aitormurgu committed Jun 27, 2024
1 parent 978cbc9 commit 17cb35d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
8 changes: 5 additions & 3 deletions docs/Examples/MQTTX/MQTTX configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ The information to create a device is <a href="/docs/Tutorials/Getting started/S

After creating the device, you will get an excel with some data that you will have to use later, so save it!

<div class="tutorial-image-container">
![excell](../img/excell-data.png)
</div>

| 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.

Expand Down
7 changes: 4 additions & 3 deletions docs/Examples/POSTMAN/Getting the token.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<div class="tutorial-image-container">
![icon](../img/excell-data.png)
</div>

| 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.

Expand Down
10 changes: 7 additions & 3 deletions docs/How-to guides/How to define alarm and triggers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<div class="tutorial-image-container">
![Groups](img/groups.png)
</div>
| 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
Expand Down

0 comments on commit 17cb35d

Please sign in to comment.