Categorygithub.com/iot-thermometer/server
module
0.0.0-20240116204956-055cc3d5bb12
Repository: https://github.com/iot-thermometer/server.git
Documentation: pkg.go.dev

# README

IoT server

HTTP REST API Specification

POST /api/auth/login
{
    "email": "",
    "password": ""
}
POST /api/auth/register
{
    "email": "",
    "password": ""
}
GET /api/devices
POST /api/devices
{
    "name": ""
}
PUT /api/devices/:id
{
    "name": ""
}
DELETE /api/devices/:id
GET /api/devices/:id/readings

MQTT message:

{
    "device_id": 1,
    "type": "TEMPERATURE",
    "value": 0,
    "time": 1696699342
}

MQTT topic: sensors

# Packages

No description provided by the author