Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/tagotip/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,18 @@ PULL|4deedd7bab8817ec|sensor-01|[temperature]
<- ACK|OK|[temperature:=32.5#C@1694567890000]
```

## Tutorials

Follow our tutorials to start building your IoT project using UDP, TCP, HTTP, or MQTT:

:::tip Get started with TagoTiP

- [TagoTiP UDP — Quick Start](https://youtu.be/YhhHuCH7UZo)
- [TagoTiP TCP — Quick Start](https://youtu.be/cSMbQkPyrZo)
- [TagoTiP HTTP — Quick Start](https://youtu.be/oZfrq5xFS5k)
- [TagoTiP MQTT — Quick Start](https://youtu.be/EHnG_P28MPE)
:::

## SDKs

All language SDKs share a single Rust core (`tagotip-codec`, `no_std`), so parsing and frame building behave identically everywhere.
Expand Down
4 changes: 4 additions & 0 deletions docs/tagotip/transports/http.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ keywords: [tagotip, iot, http, rest, api]

# TagoTiP over HTTP

:::tip Tutorial
Follow our step-by-step tutorial to connect your first device over HTTP: [TagoTiP HTTP — Quick Start](https://youtu.be/oZfrq5xFS5k)
:::

Standard HTTP you already know - `POST` to send, `GET` to retrieve, `HEAD` to ping. A single `Authorization` header and a clean REST-style API. Works through every firewall and proxy.

## Endpoint
Expand Down
4 changes: 4 additions & 0 deletions docs/tagotip/transports/mqtt.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ keywords: [tagotip, iot, mqtt, pub/sub, qos]

# TagoTiP over MQTT

:::tip Tutorial
Follow our step-by-step tutorial to connect your first device over MQTT: [TagoTiP MQTT — Quick Start](https://youtu.be/EHnG_P28MPE)
:::

**Publish/subscribe messaging** with QoS delivery guarantees. TagoTiP over MQTT maps the protocol to standard MQTT topics - the server pushes commands to your device in real time, and QoS levels handle delivery reliability at the transport layer.

## Endpoint
Expand Down
4 changes: 4 additions & 0 deletions docs/tagotip/transports/tcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ keywords: [tagotip, iot, tcp, persistent connection, tls]

# TagoTiP over TCP

:::tip Tutorial
Follow our step-by-step tutorial to connect your first device over TCP: [TagoTiP TCP — Quick Start](https://youtu.be/cSMbQkPyrZo)
:::

**Guaranteed delivery** and **real-time commands**. TagoTiP over TCP ensures every data point arrives in order - and the server can push commands to your device the moment they are ready.

## Endpoint
Expand Down
4 changes: 4 additions & 0 deletions docs/tagotip/transports/udp.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ keywords: [tagotip, iot, udp, datagram, low power]

# TagoTiP over UDP

:::tip Tutorial
Follow our step-by-step tutorial to connect your first device over UDP: [TagoTiP UDP — Quick Start](https://youtu.be/YhhHuCH7UZo)
:::

The **fastest path** from sensor to cloud. No connection setup, no handshake - a single datagram carries your data to TagoIO in as few as 60 bytes.

## Endpoint
Expand Down
Loading