Skip to content

Commit

Permalink
doc: FAQ
Browse files Browse the repository at this point in the history
  • Loading branch information
nejraselimovic committed Jun 2, 2024
1 parent c3157cc commit 5fcacef
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,38 +1,48 @@
---
title: "Best Practices"
title: "FAQ"
description: ""
weight: 5
---

Check best practices below to learn how to get the most out of LoRaWAN® and {{% tts %}}.
Check out frequently asked question about {{% tts %}} and learn how to get the most out of your deployment.

<!--more-->

## Why use LoRaWAN and {{% tts %}} for your next IoT use case?
## Why to use LoRaWAN and {{% tts %}} for your next IoT use case?

LoRaWAN is a communication protocol that has proven advantage in transmitting small sensor data packets over long distances in comparison to other wireless technologies, which makes it great for various use cases, especially industrial deployments. {{% tts %}} is a complete LoRaWAN Network Server that enables you to easily utilize LoRaWAN features to build your use case, while being fully compliant to the LoRa Alliance specifications.

Check out [this article](https://www.thethingsindustries.com/news/why-you-should-use-lora-technology-and-lorawan-for-your-next-iot-use-case/) for more info about benefits of LoRaWAN for your use case.

## How does {{% tts %}} work?

Check out [{{% tts %}} Architecture]({{< ref "/the-things-stack/concepts/architecture" >}}) guide for a detailed overview of the platform components and their functionality.

## How to choose a LoRaWAN device?

Check out the [Device Repository](https://www.thethingsnetwork.org/device-repository/) that contains a list of the most popular end devices within LoRaWAN ecosystem and try to find devices that match your needs. You can also check out our [Use Case selector](https://www.thethingsindustries.com/usecase-selector/) to get a list of recommended devices and partners for your specific use case.

## How to easily provision devices in {{% tts %}}?

The easiest way of provisioning devices is using [Device Repository](https://www.thethingsnetwork.org/device-repository/) because that way you don't have to worry too much about LoRaWAN and Regional Parameters versions as they are automatically provided by {{% tts %}}. Check the [Adding Devices]({{< ref "/devices/adding-devices" >}}) guide for detailed instructions on how to provision devices using Device Repository or manually, as well as in bulk.
The easiest way of provisioning devices is using [Device Repository](https://www.thethingsnetwork.org/device-repository/) because that way you don't have to worry too much about [LoRaWAN and Regional Parameters]({{< ref "/the-things-stack/concepts/spec-regional-parameters" >}}) versions as they are automatically provided by {{% tts %}}.

Also, it is recommended use OTAA activation method, rather than ABP. Check [here]({{< ref "/devices/concepts/abp-vs-otaa/" >}}) why.
Check the [Adding Devices]({{< ref "/devices/adding-devices" >}}) guide for detailed instructions on how to provision devices using Device Repository or manually, as well as in bulk. Check [here]({{< ref "/devices/models/" >}}) for simple guides on connecting various device models to {{% tts %}}.

Keep in mind that we highly recommend to use OTAA activation method, rather than ABP. Check [here]({{< ref "/devices/concepts/abp-vs-otaa/" >}}) why.

## How to choose a LoRaWAN gateway?

Gateways that use the legacy [{{% udp-pf %}}]({{< ref "/gateways/concepts/udp/" >}}) have many security drawbacks, so gateways that use the [{{% lbs %}}]({{< ref "/gateways/concepts/lora-basics-station" >}}) are highly recommended.
Gateways that use the legacy [{{% udp-pf %}}]({{< ref "/gateways/concepts/udp/" >}}) have many security drawbacks, so gateways that use the [{{% lbs %}}]({{< ref "/gateways/concepts/lora-basics-station" >}}) are strongly recommended.

[Adding gateways]({{< ref "/gateways/concepts/adding-gateways/" >}}) guides you through simple process of gateway onboarding. Check [here]({{< ref "/gateways/models/" >}}) for simple guides on connecting various gateway models to {{% tts %}}.

## How to easily interact with {{% tts %}}?

You can [interact with {{% tts %}}]({{< ref "/the-things-stack/interact/" >}}) via Console, CLI and API. For newly onboarded users, the easiest way is probably using the Console. Advanced users who are familiar with the CLI or API can even build scripts on top of them to automate certain processes.
You can [interact with {{% tts %}}]({{< ref "/the-things-stack/interact/" >}}) via Console, CLI and API. For newly onboarded users, the easiest way is probably using the Console Web UI. Advanced users who are familiar with the CLI or API can even build scripts on top of them to automate certain processes.

## Can I host {{% tts %}} on my own hardware?

Yes, {{% tts %}} can be installed on your own hardware - check out a detailed guide on [hosting {{% tts %}}]({{< ref "/the-things-stack/host" >}}), whether on you're installing it for DIY projects or for production purposes.

## How could you benefit from {{% tts %}} multi-cluster and multi-tenant deployments?

Expand All @@ -46,6 +56,10 @@ Improving the network coverage can be done by utilizing [Packet Broker]({{< ref

You can choose to contribute to the community by defining [policies]({{< ref "/the-things-stack/packet-broker/configure/" >}}) to route traffic from your gateways to {{% ttss %}} devices.

## Does {{% tts %}} store data?

For certain {{% tts %}} deployments it is possible to enable [Storage Integration]({{< ref "/integrations/storage" >}}), that allows storing upstream data and retrieving it at a later time.

## How to get the most out of the data acquired from devices?

{{% tts %}} features a large number of out-of-the-box platform integrations. Check them out [here]({{< ref "/integrations/" >}}).
{{% tts %}} features a large number of third party platform [integrations]({{< ref "/integrations/" >}}). They can help you turn your sensor data from {{% tts %}} into a completely functional end-to-end IoT solution.
2 changes: 1 addition & 1 deletion doc/content/getting-started/next-steps/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Once you have your first LoRaWAN® Network setup, here are the next steps.
2. [Add LoRaWAN end devices]({{< ref "devices/adding-devices" >}}) to send LoRaWAN traffic to your network.
3. [Create an integration]({{< ref "integrations" >}}) to send your LoRaWAN sensor data to external integrations or to your own private server.
4. Learn how to get the most out of [{{% tts %}}]({{< ref "/the-things-stack/" >}}).
5. Check out the [Glossary]({{< ref "/reference/glossary" >}}) for a disambiguation of some of these terms. You can also check [Best Practices]({{< ref "/getting-started/best-practices" >}}).
5. Check out the [Glossary]({{< ref "/reference/glossary" >}}) for a disambiguation of some of these terms and [FAQ]({{< ref "/getting-started/faq" >}}).

## Learn more

Expand Down

0 comments on commit 5fcacef

Please sign in to comment.