1
0
Files
2026-02-16 16:55:57 +01:00

33 lines
602 B
Plaintext

meta {
name: Device State
type: http
seq: 8
}
post {
url: {{base_url}}/devsta
body: none
auth: inherit
}
docs {
# Device State
Returns device state and status summary.
## Set Parameters
None.
## Response
- `devs`: Device status (e.g., "active")
- `sm`: Standby/mode flag (integer)
- `rains`: Current RAINS status ("WET" or "DRY")
- `maxw`: MAX WET/resettable status ("WET" or "DRY")
- `maxwt`: Last reset timestamp for MAX WET (DD.MM.YYYY HH:MM:SS)
## Example
```json
{"devs":"active","sm":0,"rains":"WET","maxw":"WET","maxwt":"10.11.2025 11:48:08"}
```
}