1
0

petr's changes

This commit is contained in:
2026-02-16 16:55:57 +01:00
parent e790d12ea1
commit 7d898e04f2
31 changed files with 416 additions and 35 deletions

View File

@@ -0,0 +1,3 @@
meta {
name: 04-network scan
}

View File

@@ -0,0 +1,37 @@
meta {
name: Information About Found Devices
type: http
seq: 2
}
post {
url: {{base_url}}/get_child
body: formUrlEncoded
auth: inherit
}
body:form-urlencoded {
~i: 0
}
docs {
# Information About Found Devices
Retrieve results from the network scan.
## Set Parameters
- `i` (optional): Index of device for sending info back (0-searched devices count)
## Response
If `i` is not set:
- `sd`: 0 if scan is done else 1
- `max`: 1 if max devices reached else 0
- `c`: Discovered devices count
- `ip`: Discovered device IP address for each index (returned as numbered fields)
If `i` is set and `i` < devices count:
- `ip`: Discovered device IP address at index `i`
If `i` is set and `i` >= devices count:
- Empty JSON response
}

View File

@@ -0,0 +1,23 @@
meta {
name: Devices on Network Scan
type: http
seq: 1
}
post {
url: {{base_url}}/start_scan
body: none
auth: inherit
}
docs {
# Devices on Network Scan
Start artpool devices search.
## Set Parameters
None.
## Response
Empty JSON response.
}