Getting Started
Less than 1 minute
Getting Started
Create your first IoT product and connect a device in 5 minutes.
1. Login
Visit http://server-ip with admin / admin123.
2. Create Product
Go to IoT > Product Management → Add:
- Name: e.g. "Temperature Sensor"
- Device Type: Direct Device
- Auth: Simple Auth (one device one secret)
3. Define Thing Model
In the product detail page → Thing Model tab:
- Add property: "temperature" (float, ℃)
- Add property: "humidity" (float, %RH)
- Click Publish
4. Add Device
Go to IoT > Device Management → Add:
- Select the product
- Name: "sensor-001"
- Save the auto-generated Device Number and Auth Key
5. MQTT Test
Connect with any MQTT client:
| Parameter | Value |
|---|---|
| Server | Your server IP |
| Port | 1883 (TCP) |
| Client ID | S&deviceNumber&productId&userId |
| Username | MQTT username |
| Password | MQTT password |
Publish to /{productId}/{deviceNum}/property/post:
[{
"id": "temperature",
"value": "25.6",
"remark": ""
}, {
"id": "humidity",
"value": "60.2",
"remark": ""
}]View real-time data in the device detail page.
Next Steps
- MQTT Access — Detailed topic and payload reference
- Scene Linkage — Automate device interactions
- Rule Scripts — Custom data processing
