diff --git a/docs/tagotip/introduction.md b/docs/tagotip/introduction.md index 7a1e5a54..1728e6d9 100644 --- a/docs/tagotip/introduction.md +++ b/docs/tagotip/introduction.md @@ -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. diff --git a/docs/tagotip/transports/http.md b/docs/tagotip/transports/http.md index ecfef501..4fb1570d 100644 --- a/docs/tagotip/transports/http.md +++ b/docs/tagotip/transports/http.md @@ -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 diff --git a/docs/tagotip/transports/mqtt.md b/docs/tagotip/transports/mqtt.md index fb08bf2f..107465f7 100644 --- a/docs/tagotip/transports/mqtt.md +++ b/docs/tagotip/transports/mqtt.md @@ -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 diff --git a/docs/tagotip/transports/tcp.md b/docs/tagotip/transports/tcp.md index 81fda92a..d2c951c9 100644 --- a/docs/tagotip/transports/tcp.md +++ b/docs/tagotip/transports/tcp.md @@ -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 diff --git a/docs/tagotip/transports/udp.md b/docs/tagotip/transports/udp.md index 733de7db..8aad21d7 100644 --- a/docs/tagotip/transports/udp.md +++ b/docs/tagotip/transports/udp.md @@ -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