DLI EPCR6 Object Model Reference
|
object | relay/ |
Object representing relay state and configuration |
This object contains the following items:
Sample curl
read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/relay/"
⇒
...
Sample uom
library write command:
uom.relay=<...>
string | relay/name/ |
User-visible relay name |
Changing the value is denied if not administrative user
This string represents a value in persistent storage.
Sample JS request
write command:
request.put({url:"relay/name/",body:"My controller"});
Sample uom
library read command:
print(uom.dump(uom.relay.name))
⇒
"My controller"
sum (variant) | relay/online/ |
Relay module online status |
Retrieving the value is denied if not administrative user
This sum does not support direct modification if agent identifier is not equal to relay.
This sum can assume the following values:
constant true | Online | The relay module is online and fully operational, outlets can be switched on unless emergency shutoff is activated | |
constant "degraded" | Degraded | The relay module is online but outlets cannot be switched on due to low-power conditions | |
constant false | Offline | The relay module is offline, outlets cannot be switched on |
Sample CLI read command:
uom get "relay/online"
⇒
true
Sample uom
library read command:
print(uom.dump(uom.relay.online))
⇒
true
string | relay/model/ |
Relay model name |
Retrieving the value is denied if not administrative user
This string does not support direct modification.
This string represents a value in persistent storage.
Sample curl
read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/relay/model/"
⇒
"EPCR5"
Sample JS request
read command:
request.get({url:"relay/model/"},function(error,response,body) {console.log(body)});
⇒
"EPCR5"
string | relay/version/ |
Relay core firmware version number |
Retrieving the value is denied if not administrative user
This string does not support direct modification if agent identifier is not equal to relay.
Sample CLI read command:
uom get "relay/version"
⇒
"1.8.1.0"
Sample CLI write command:
uom set "relay/version" "\"1.8.1.0\""
array | relay/outlets/ |
Outlets controlled by the relay |
This array does not support direct modification.
This array represents a value in persistent storage.
This array contains Outlet elements.
Creating elements in this collection is not supported.
Sample CLI read command:
uom get "relay/outlets"
⇒
...
Sample JS request
read command:
request.get({url:"relay/outlets/"},function(error,response,body) {console.log(body)});
⇒
<...>
object | relay/outlets/N/ |
Object representing outlet state and configuration |
This object contains the following items:
name | Name |
state | Configured state |
transient_state | Transient state |
physical_state | Physical state |
locked | Lock state |
critical | Critical |
cycle_delay | Outlet cycle delay, if any |
cycle | Cycle |
Sample JS request
read command (note that _outlet_index
is a variable):
request.get({url:"relay/outlets/"+_outlet_index.toString()+"/"},function(error,response,body) {console.log(body)});
⇒
{"state":false,"critical":true,"cycle_delay":5,"locked":false,"transient_state":true,"physical_state":true,"name":"Local alarm lights"}
Sample uom
library write command (note that _outlet_index
is a variable):
uom.relay.outlets[_outlet_index]={critical=true,cycle_delay=7,locked=true,name="Cooling fans",physical_state=true,state=false,transient_state=true}
See also Outlet: Name
See also Outlet: Configured state
See also Outlet: Transient state
See also Outlet: Physical state
See also Outlet: Lock state
See also Outlet: Critical
See also Outlet: Outlet cycle delay, if any
See also Outlet: Cycle
string | relay/outlets/N/name/ |
User-visible outlet name |
Retrieving the value is denied if any of the following is true:
false
true
Changing the value is denied if not administrative user
This string represents a value in persistent storage.
Sample curl
read command (note that :outlet_index
is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/relay/outlets/:outlet_index/name/"
⇒
"Power grid"
Sample requests
read command (note that _outlet_index
is a variable):
print(requests.get('http://192.168.0.100/restapi/relay/outlets/'+str(_outlet_index)+'/name/',auth=auth,headers=headers).json())
⇒
'Server'
sum (boolean) | relay/outlets/N/state/ |
Saved configured state of the outlet. Cannot be changed if the outlet is locked |
Retrieving the value is denied if any of the following is true:
false
true
Changing the value is denied if any of the following is true:
false
true
This sum represents a value in persistent storage.
Changes to this sum may have an effect besides setting value.
This sum can assume the following values:
constant true | On | The outlet is powered | |
constant false | Off | The outlet is not powered |
Sample JS request
write command (note that _outlet_index
is a variable):
request.put({url:"relay/outlets/"+_outlet_index.toString()+"/state/",body:true});
Sample requests
read command (note that _outlet_index
is a variable):
print(requests.get('http://192.168.0.100/restapi/relay/outlets/'+str(_outlet_index)+'/state/',auth=auth,headers=headers).json())
⇒
False
sum (boolean) | relay/outlets/N/transient_state/ |
Current expected state of the outlet. Cannot be changed if the outlet is locked |
Retrieving the value is denied if any of the following is true:
false
true
Changing the value is denied if any of the following is true:
false
true
This sum can change as if by itself or indirectly because of other actions.
This sum can assume the following values:
constant true | On | The outlet is powered | |
constant false | Off | The outlet is not powered |
Sample CLI read command (note that outlet_index
is a variable):
uom get "relay/outlets/${outlet_index}/transient_state"
⇒
false
Sample curl
read command (note that :outlet_index
is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/relay/outlets/:outlet_index/transient_state/"
⇒
false
sum (boolean) | relay/outlets/N/physical_state/ |
Current actual state of the outlet |
Retrieving the value is denied if any of the following is true:
false
true
Changing the value is denied if agent identifier is not equal to relay
This sum does not support direct modification if agent identifier is not equal to relay.
This sum can assume the following values:
constant true | On | The outlet is powered | |
constant false | Off | The outlet is not powered |
Sample requests
read command (note that _outlet_index
is a variable):
print(requests.get('http://192.168.0.100/restapi/relay/outlets/'+str(_outlet_index)+'/physical_state/',auth=auth,headers=headers).json())
⇒
False
Sample curl
read command (note that :outlet_index
is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/relay/outlets/:outlet_index/physical_state/"
⇒
true
sum (boolean) | relay/outlets/N/locked/ |
Indicates whether the outlet state is locked from keypad |
Retrieving the value is denied if any of the following is true:
false
true
Changing the value is denied if agent identifier is not equal to relay
This sum represents a value in persistent storage.
This sum can assume the following values:
constant true | Locked | The outlet state cannot be changed | |
constant false | Unlocked | The outlet state can be changed |
Sample uom
library write command (note that _outlet_index
is a variable):
uom.relay.outlets[_outlet_index].locked=false
Sample uom
library read command (note that _outlet_index
is a variable):
print(uom.dump(uom.relay.outlets[_outlet_index].locked))
⇒
true
sum (boolean) | relay/outlets/N/critical/ |
Flag indicating whether the outlet is critical, and turning it off should ask for confirmation |
Retrieving the value is denied if any of the following is true:
false
true
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
constant true | Critical | Confirmation requested to change the outlet state | |
constant false | Noncritical | No confirmation is needed to change the outlet state |
Sample CLI read command (note that outlet_index
is a variable):
uom get "relay/outlets/${outlet_index}/critical"
⇒
false
Sample curl
read command (note that :outlet_index
is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/relay/outlets/:outlet_index/critical/"
⇒
false
sum (optional number) | relay/outlets/N/cycle_delay/ |
Outlet cycle delay, in seconds, if any |
Retrieving the value is denied if any of the following is true:
false
true
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
constant null | Use default cycle delay | Use unit default cycle delay | |
number | Outlet cycle delay | Outlet cycle delay, in seconds | the value is greater than 0 |
Sample curl
write command (note that :outlet_index
is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "3" "http://192.168.0.100/restapi/relay/outlets/:outlet_index/cycle_delay/"
Sample CLI read command (note that outlet_index
is a variable):
uom get "relay/outlets/${outlet_index}/cycle_delay"
⇒
null
call | relay/outlets/N/cycle/ |
Turns the outlet off, then on again after the cycle delay passes. Has no effect when the outlet is already off. Signals an error if the outlet is locked. Does not turn the outlet back on if it becomes locked |
Performing the function call is denied if any of the following is true:
false
true
The call has no arguments (supply empty tuple).
The call returns the following results:
Sample requests
invocation (note that _outlet_index
is a variable):
print(requests.post('http://192.168.0.100/restapi/relay/outlets/'+str(_outlet_index)+'/cycle/',auth=auth,headers=headers,json={}).json())
⇒
True
Sample CLI invocation (note that outlet_index
is a variable):
uom invoke "relay/outlets/${outlet_index}/cycle"
⇒
false
sum (boolean) | relay/outlets/N/cycle/results: 1/ |
Flag indicating whether the call affected the outlet state |
This sum does not correspond to an actual resource.
This sum can assume the following values:
constant true | Started | The outlet was on and the cycle has started | |
constant false | No action taken | The outlet was off or already in a cycle, so the call had no effect |
number | relay/sequence_delay/ |
Time after switching an outlet on during which switching outlets on is delayed to prevent simultaneous inrush currents on power-on |
The value represents time, the standard unit of which is the second (s).
The value is subject to the following constraints: the value is greater or equal to minimal ON sequence delay
Changing the value is denied if not administrative user
This number represents a value in persistent storage.
Sample CLI write command:
uom set "relay/sequence_delay" "5"
Sample JS request
write command:
request.put({url:"relay/sequence_delay/",body:5});
number | relay/min_sequence_delay/ |
The minimal time after switching an outlet on during which switching outlets on is delayed |
The value represents time, the standard unit of which is the second (s).
The value is subject to the following constraints: the value is greater or equal to 0
This number does not support direct modification.
This number represents a value in persistent storage.
Sample JS request
read command:
request.get({url:"relay/min_sequence_delay/"},function(error,response,body) {console.log(body)});
⇒
1
Sample curl
read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/relay/min_sequence_delay/"
⇒
1
number | relay/cycle_delay/ |
Time between switching an outlet off and turning it back on during cycling, which allows the controlled device to really power down |
The value represents time, the standard unit of which is the second (s).
The value is subject to the following constraints: the value is greater than 0
Changing the value is denied if not administrative user
This number represents a value in persistent storage.
Sample requests
read command:
print(requests.get('http://192.168.0.100/restapi/relay/cycle_delay/',auth=auth,headers=headers).json())
⇒
3
Sample CLI write command:
uom set "relay/cycle_delay" "7"
number | relay/relatch/ |
Time to wait before relatching relays on brown-out |
The value represents time, the standard unit of which is the second (s).
The value is subject to the following constraints: the value is greater than 0
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This number represents a value in persistent storage.
Sample JS request
read command:
request.get({url:"relay/relatch/"},function(error,response,body) {console.log(body)});
⇒
6
Sample requests
write command:
requests.put('http://192.168.0.100/restapi/relay/relatch/',auth=auth,headers=headers,json=9)
sum (enumerated number) | relay/recovery_mode/ |
Outlet power-off recovery state policy |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
constant 0 | All outlets off | All outlets remain powered off at power-up | |
constant 1 | All outlets on | All outlets are switched on in sequence during power-up | |
constant 2 | Pre-powerloss state | Outlets are returned to configured pre-powerloss state during power-up |
Sample JS request
write command:
request.put({url:"relay/recovery_mode/",body:2});
Sample CLI read command:
uom get "relay/recovery_mode"
⇒
1
array | relay/buses/ |
Buses powering the relay |
This array does not support direct modification.
This array represents a value in persistent storage.
This array contains Bus elements.
Creating elements in this collection is not supported.
Sample requests
read command:
print(requests.get('http://192.168.0.100/restapi/relay/buses/',auth=auth,headers=headers).json())
⇒
Sample CLI read command:
uom get "relay/buses"
⇒
object | relay/buses/N/ |
Object representing bus state and configuration |
This object contains the following items:
Sample requests
read command (note that _bus_index
is a variable):
print(requests.get('http://192.168.0.100/restapi/relay/buses/'+str(_bus_index)+'/',auth=auth,headers=headers).json())
⇒
{'outlet_indices': [0, 1, 2, 3], 'voltage_affects_outlets': [1, 2, 3], 'max_current': 5, 'current_affects_outlets': [0], 'max_voltage': None, 'min_voltage': 60}
Sample curl
write command (note that :bus_index
is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "{\"outlet_indices\":[0,1,2,3],\"voltage_affects_outlets\":[1,2,3],\"max_current\":5,\"current_affects_outlets\":[0],\"max_voltage\":null,\"min_voltage\":60}" "http://192.168.0.100/restapi/relay/buses/:bus_index/"
See also Bus: Outlet list
See also Bus: Voltage-affected outlets
See also Bus: Minimum voltage, if any
See also Bus: Maximum voltage, if any
See also Bus: Current-affected outlets
See also Bus: Maximum current, if any
array | relay/buses/N/outlet_indices/ |
List of outlets connected to the bus |
This array is composite, i.e. is modified as a whole.
This array does not support direct modification.
This array represents a value in persistent storage.
This array represents an unordered set (order of its elements doesn't matter, and each value should not be supplied more than once).
This array contains Outlet index elements.
Creating elements in this collection is not supported.
Sample curl
read command (note that :bus_index
is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/relay/buses/:bus_index/outlet_indices/"
⇒
[0,1,2,3]
Sample requests
read command (note that _bus_index
is a variable):
print(requests.get('http://192.168.0.100/restapi/relay/buses/'+str(_bus_index)+'/outlet_indices/',auth=auth,headers=headers).json())
⇒
[4, 5, 6, 7]
number | relay/buses/N/outlet_indices/N/ |
Index of outlet connected to the bus |
The value is subject to the following constraints: all of the following is true:
This number is a part of a composite value which is modified as a whole.
This number does not support direct modification.
This number represents a value in persistent storage.
Sample JS request
read command (note that _bus_index
and _outlet_index_index
are variables):
request.get({url:"relay/buses/"+_bus_index.toString()+"/outlet_indices/"+_outlet_index_index.toString()+"/"},function(error,response,body) {console.log(body)});
⇒
4
Sample requests
read command (note that _bus_index
and _outlet_index_index
are variables):
print(requests.get('http://192.168.0.100/restapi/relay/buses/'+str(_bus_index)+'/outlet_indices/'+str(_outlet_index_index)+'/',auth=auth,headers=headers).json())
⇒
0
array | relay/buses/N/voltage_affects_outlets/ |
List of outlets affected by over/undervoltage |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This array is composite, i.e. is modified as a whole.
This array represents a value in persistent storage.
This array represents an unordered set (order of its elements doesn't matter, and each value should not be supplied more than once).
This array contains Outlet list index elements.
Sample requests
write command (note that _bus_index
is a variable):
requests.put('http://192.168.0.100/restapi/relay/buses/'+str(_bus_index)+'/voltage_affects_outlets/',auth=auth,headers=headers,json=[1, 2, 3])
Sample requests
outlet list index creation command (note that _bus_index
is a variable):
requests.post('http://192.168.0.100/restapi/relay/buses/'+str(_bus_index)+'/voltage_affects_outlets/',auth=auth,headers=headers,json=3)
number | relay/buses/N/voltage_affects_outlets/N/ |
Index of outlet in the bus outlet list |
The value is subject to the following constraints: all of the following is true:
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This number is a part of a composite value which is modified as a whole.
Sample curl
deletion command (note that :bus_index
and :outlet_list_index_index
are URL template arguments):
curl --digest -u admin:1234 -H "X-CSRF: x" -X DELETE -H "Accept: application/json" "http://192.168.0.100/restapi/relay/buses/:bus_index/voltage_affects_outlets/:outlet_list_index_index/"
Sample requests
deletion command (note that _bus_index
and _outlet_list_index_index
are variables):
requests.delete('http://192.168.0.100/restapi/relay/buses/'+str(_bus_index)+'/voltage_affects_outlets/'+str(_outlet_list_index_index)+'/',auth=auth,headers=headers)
sum (optional number) | relay/buses/N/min_voltage/ |
The minimum voltage, below which the affected bus outlets are switched off, if any |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
constant null | No minimum voltage | Undervoltage doesn't affect any outlets | |
number | Minimum voltage | The minimum voltage, below which the affected bus outlets are switched off | the value is greater or equal to 0 |
Sample requests
write command (note that _bus_index
is a variable):
requests.put('http://192.168.0.100/restapi/relay/buses/'+str(_bus_index)+'/min_voltage/',auth=auth,headers=headers,json=60)
Sample requests
read command (note that _bus_index
is a variable):
print(requests.get('http://192.168.0.100/restapi/relay/buses/'+str(_bus_index)+'/min_voltage/',auth=auth,headers=headers).json())
⇒
60
sum (optional number) | relay/buses/N/max_voltage/ |
The maximum voltage, above which the affected bus outlets are switched off, if any |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
constant null | No maximum voltage | Overvoltage doesn't affect any outlets | |
number | Maximum voltage | The maximum voltage, above which the affected bus outlets are switched off | the value is greater or equal to 0 |
Sample requests
read command (note that _bus_index
is a variable):
print(requests.get('http://192.168.0.100/restapi/relay/buses/'+str(_bus_index)+'/max_voltage/',auth=auth,headers=headers).json())
⇒
None
Sample CLI write command (note that bus_index
is a variable):
uom set "relay/buses/${bus_index}/max_voltage" "null"
array | relay/buses/N/current_affects_outlets/ |
List of outlets affected by overcurrent |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This array is composite, i.e. is modified as a whole.
This array represents a value in persistent storage.
This array represents an unordered set (order of its elements doesn't matter, and each value should not be supplied more than once).
This array contains Outlet list index elements.
Sample JS request
outlet list index creation command (note that _bus_index
is a variable):
request.post({url:"relay/buses/"+_bus_index.toString()+"/current_affects_outlets/",body:2});
Sample JS request
write command (note that _bus_index
is a variable):
request.put({url:"relay/buses/"+_bus_index.toString()+"/current_affects_outlets/",body:[0]});
number | relay/buses/N/current_affects_outlets/N/ |
Index of outlet in the bus outlet list |
The value is subject to the following constraints: all of the following is true:
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This number is a part of a composite value which is modified as a whole.
Sample CLI write command (note that bus_index
and outlet_list_index_index
are variables):
uom set "relay/buses/${bus_index}/current_affects_outlets/${outlet_list_index_index}" "0"
Sample uom
library deletion command (note that _bus_index
and _outlet_list_index_index
are variables):
local composite=uom.copy(uom.relay.buses[_bus_index].current_affects_outlets) uom.remove(composite,_outlet_list_index_index) uom.relay.buses[_bus_index].current_affects_outlets=composite
sum (optional number) | relay/buses/N/max_current/ |
The maximum current, above which the affected bus outlets are switched off, if any |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
constant null | No maximum current | Overcurrent doesn't affect any outlets | |
number | Maximum current | The maximum current, above which the affected bus outlets are switched off | the value is greater or equal to 0 |
Sample uom
library read command (note that _bus_index
is a variable):
print(uom.dump(uom.relay.buses[_bus_index].max_current))
⇒
14
Sample uom
library write command (note that _bus_index
is a variable):
uom.relay.buses[_bus_index].max_current=5
map | relay/ports/ |
I/O ports attached to the relay |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This map does not support direct modification if agent identifier is not equal to relay.
This map contains I/O port elements.
Sample uom
library I/O port creation command:
uom.insert(uom.relay.ports,"uart_k3",{accept={},configuration={},latest_received={d="6683DB53BB0A"},name="uart_k3",type="uart"})
Sample uom
library read command:
print(uom.dump(uom.relay.ports))
⇒
object | relay/ports/S/ |
Object representing an I/O port and its channels |
This object contains the following items:
Sample uom
library read command (note that _i_o_port
is a variable):
print(uom.dump(uom.relay.ports[_i_o_port]))
⇒
{accept={d=true},configuration={parity="S"},latest_received={},name="uart_jx",type="uart"}
Sample uom
library write command (note that _i_o_port
is a variable):
uom.relay.ports[_i_o_port]={accept={d=true},configuration={baudrate="5",parity="E",stop_bits="1.5"},latest_received={d=""},name="uart_6",type="uart"}
See also I/O port: Name
See also I/O port: Type
See also I/O port: Configuration
See also I/O port: Data reception mask
See also I/O port: Send data
See also I/O port: Latest received data
See also I/O port: Get receive history
See also I/O port: Clear received data history
string | relay/ports/S/name/ |
User-visible port name |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string represents a value in persistent storage.
Sample requests
read command (note that _i_o_port
is a variable):
print(requests.get('http://192.168.0.100/restapi/relay/ports/'+_i_o_port+'/name/',auth=auth,headers=headers).json())
⇒
'uart_548399tl9bucrc'
Sample requests
write command (note that _i_o_port
is a variable):
requests.put('http://192.168.0.100/restapi/relay/ports/'+_i_o_port+'/name/',auth=auth,headers=headers,json='uart_8t6803')
string | relay/ports/S/type/ |
Port type |
The value is subject to the following constraints: port types[the value]
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string does not support direct modification if agent identifier is not equal to relay.
Sample requests
read command (note that _i_o_port
is a variable):
print(requests.get('http://192.168.0.100/restapi/relay/ports/'+_i_o_port+'/type/',auth=auth,headers=headers).json())
⇒
'uart'
Sample CLI read command (note that i_o_port
is a variable):
uom get "relay/ports/${i_o_port}/type"
⇒
"uart"
map | relay/ports/S/configuration/ |
Port configuration |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This map represents a value in persistent storage.
This map can change as if by itself or indirectly because of other actions.
This map contains Configuration value elements.
Sample requests
configuration value creation command (note that _i_o_port
is a variable):
requests.put('http://192.168.0.100/restapi/relay/ports/'+_i_o_port+'/configuration/char_size/',auth=auth,headers=headers,json='5')
Sample curl
read command (note that :i_o_port
is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/relay/ports/:i_o_port/configuration/"
⇒
{"stop_bits":"1","char_size":"8"}
string | relay/ports/S/configuration/S/ |
Value of a configuration item |
The value is subject to the following constraints: the value matches port types[type].data_items[index of the value].regexp
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
Sample CLI write command (note that i_o_port
and configuration_value
are variables):
uom set "relay/ports/${i_o_port}/configuration/${configuration_value}" "\"914\""
Sample CLI deletion command (note that i_o_port
and configuration_value
are variables):
uom remove "relay/ports/${i_o_port}/configuration/${configuration_value}"
map | relay/ports/S/accept/ |
Mask of channels to receive data from |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This map represents a value in persistent storage.
This map contains Enable elements.
Sample JS request
enable creation command (note that _i_o_port
is a variable):
request.put({url:"relay/ports/"+_i_o_port+"/accept/d/",body:true});
Sample CLI read command (note that i_o_port
is a variable):
uom get "relay/ports/${i_o_port}/accept"
⇒
{"d":true}
constant true | relay/ports/S/accept/S/ |
Enable reception from this channel |
The value is subject to the following constraints: port types[type].channels[index of the value]
Sample JS request
deletion command (note that _i_o_port
and _enable
are variables):
request.delete({url:"relay/ports/"+_i_o_port+"/accept/"+_enable+"/"});
Sample curl
write command (note that :i_o_port
and :enable
are URL template arguments):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "true" "http://192.168.0.100/restapi/relay/ports/:i_o_port/accept/:enable/"
call | relay/ports/S/send/ |
Write data to port's channels |
Performing the function call is denied if not administrative user
The call accepts the following arguments:
The call returns the following results:
Sample requests
invocation (note that _i_o_port
is a variable):
requests.post('http://192.168.0.100/restapi/relay/ports/'+_i_o_port+'/send/',auth=auth,headers=headers,json={})
⇒
(no output)
Sample curl
invocation (note that :i_o_port
is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -H "Content-type: application/json" -H "Accept: application/json" --data-binary "[]" "http://192.168.0.100/restapi/relay/ports/:i_o_port/send/"
⇒
null
map | relay/ports/S/send/arguments: 1/ |
Data to write, indexed by channel |
This map does not correspond to an actual resource.
This map contains Data string elements.
string | relay/ports/S/send/arguments: 1/S/ |
Channel send data, hex-encoded |
The value is subject to the following constraints: all of the following is true:
This string does not correspond to an actual resource.
constant null | relay/ports/S/send/results: 1/ |
No additional information available |
This constant does not correspond to an actual resource.
map | relay/ports/S/latest_received/ |
Latest data received, indexed by channel |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This map is composite, i.e. is modified as a whole.
This map does not support direct modification if agent identifier is not equal to relay.
Changes to this map may have an effect besides setting value.
This map contains Data string elements.
Sample uom
library data string creation command (note that _i_o_port
is a variable):
local composite=uom.copy(uom.relay.ports[_i_o_port].latest_received) uom.insert(composite,"d","C7") uom.relay.ports[_i_o_port].latest_received=composite
Sample JS request
write command (note that _i_o_port
is a variable):
request.put({url:"relay/ports/"+_i_o_port+"/latest_received/",body:{"d":"86FF67"}});
string | relay/ports/S/latest_received/S/ |
Channel received data, hex-encoded |
The value is subject to the following constraints: all of the following is true:
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string is a part of a composite value which is modified as a whole.
This string does not support direct modification if agent identifier is not equal to relay.
Changes to this string may have an effect besides setting value.
Sample JS request
write command (note that _i_o_port
and _data_string
are variables):
request.put({url:"relay/ports/"+_i_o_port+"/latest_received/"+_data_string+"/",body:[]});
Sample requests
read command (note that _i_o_port
and _data_string
are variables):
print(requests.get('http://192.168.0.100/restapi/relay/ports/'+_i_o_port+'/latest_received/'+_data_string+'/',auth=auth,headers=headers).json())
⇒
{}
number | relay/ports/S/get_receive_history/results: 1/N/1/ |
Timestamp of the received data |
The value represents time, the standard unit of which is the second (s).
This number does not correspond to an actual resource.
map | relay/ports/S/get_receive_history/results: 1/N/2/ |
Historical data received, indexed by channel |
This map does not correspond to an actual resource.
This map contains Data string elements.
string | relay/ports/S/get_receive_history/results: 1/N/2/S/ |
Channel received data, hex-encoded |
The value is subject to the following constraints: all of the following is true:
This string does not correspond to an actual resource.
This string does not support direct modification if agent identifier is not equal to relay.
Changes to this string may have an effect besides setting value.
call | relay/ports/S/get_receive_history/ |
Get history of data received over a specific time range |
Performing the function call is denied if not administrative user
The call accepts the following arguments:
The call returns the following results:
Sample CLI invocation (note that i_o_port
is a variable):
uom invoke "relay/ports/${i_o_port}/get_receive_history" "1234495527" "null"
⇒
[[1234507866.4737,{"d":""}],[1234516092.7895,{"d":"550232"}],[1234528432.2632,{"d":"B5"}],[1234536658.5789,{"d":""}],[1234548998.0526,{"d":"A199"}],[1234565450.6842,{"d":"270E8684C58F"}],[1234569563.8421,{"d":""}]]
Sample curl
invocation (note that :i_o_port
is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -H "Content-type: application/json" -H "Accept: application/json" --data-binary "[1234539427,null]" "http://192.168.0.100/restapi/relay/ports/:i_o_port/get_receive_history/"
⇒
sum (optional number) | relay/ports/S/get_receive_history/arguments: 1/ |
Requested timestamp of the first data element to retrieve, if any |
This sum does not correspond to an actual resource.
This sum can assume the following values:
constant null | Beginning of time | Return data starting from the oldest available | |
number | Data start time | Requested timestamp of the first data element to retrieve |
sum (optional number) | relay/ports/S/get_receive_history/arguments: 2/ |
Requested timestamp of the last data element to retrieve, if any |
This sum does not correspond to an actual resource.
This sum can assume the following values:
constant null | Now | Return data up to the most recent available | |
number | Data end time | Requested timestamp of the last data element to retrieve |
array | relay/ports/S/get_receive_history/results: 1/ |
Historical received data elements |
This array does not correspond to an actual resource.
This array contains Received data element elements.
tuple | relay/ports/S/get_receive_history/results: 1/N/ |
Historical data element received |
This tuple does not correspond to an actual resource.
This tuple contains the following items:
1 | Reception time |
2 | Received data |
See also Received data element: Reception time
See also Received data element: Received data
call | relay/ports/S/clear_receive_history/ |
Clear the complete history of received data |
Performing the function call is denied if not administrative user
The call has no arguments (supply empty tuple).
The call returns the following results:
Sample curl
invocation (note that :i_o_port
is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -H "Content-type: application/json" -H "Accept: application/json" --data-binary "[]" "http://192.168.0.100/restapi/relay/ports/:i_o_port/clear_receive_history/"
⇒
null
Sample CLI invocation (note that i_o_port
is a variable):
uom invoke "relay/ports/${i_o_port}/clear_receive_history"
⇒
(no output)
constant null | relay/ports/S/clear_receive_history/results: 1/ |
No additional information available |
This constant does not correspond to an actual resource.
map | relay/known_port_types/ |
Known I/O port types |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This map is composite, i.e. is modified as a whole.
This map does not support direct modification if agent identifier is not equal to relay.
This map contains I/O port type elements.
Sample uom
library I/O port type creation command:
local composite=uom.copy(uom.relay.known_port_types) uom.insert(composite,"uart",{channels={d="Data"},data_items={baudrate={name="Baud rate",regexp="^[1-9][0-9]*$"},char_size={name="Character size in bits",regexp="^(5|6|7|8)$"},parity={name="Parity setting: N for none, E for even, O for odd, M for mark, S for space",regexp="^(N|E|O|M|S)$"},stop_bits={name="Number of stop bits",regexp="^(1|2|1\\.5)$"}}}) uom.relay.known_port_types=composite
Sample JS request
write command:
request.put({url:"relay/known_port_types/",body:{"uart":{"data_items":{"baudrate":{"name":"Baud rate","regexp":"^[1-9][0-9]*$"},"char_size":{"name":"Character size in bits","regexp":"^(5|6|7|8)$"},"stop_bits":{"name":"Number of stop bits","regexp":"^(1|2|1\\.5)$"},"parity":{"name":"Parity setting: N for none, E for even, O for odd, M for mark, S for space","regexp":"^(N|E|O|M|S)$"}},"channels":{"d":"Data"}}}});
object | relay/known_port_types/S/ |
Object representing a supported type of I/O ports |
This object is a part of a composite value which is modified as a whole.
This object contains the following items:
data_items | Configuration structure |
channels | Channel map |
Sample JS request
deletion command (note that _i_o_port_type
is a variable):
request.delete({url:"relay/known_port_types/"+_i_o_port_type+"/"});
Sample CLI read command (note that i_o_port_type
is a variable):
uom get "relay/known_port_types/${i_o_port_type}"
⇒
See also I/O port type: Configuration structure
See also I/O port type: Channel map
map | relay/known_port_types/S/data_items/ |
Port configuration structure |
Retrieving the value is denied if not administrative user
This map is a part of a composite value which is modified as a whole.
This map does not support direct modification.
This map contains Configuration item properties elements.
Creating elements in this collection is not supported.
Sample CLI read command (note that i_o_port_type
is a variable):
uom get "relay/known_port_types/${i_o_port_type}/data_items"
⇒
Sample JS request
read command (note that _i_o_port_type
is a variable):
request.get({url:"relay/known_port_types/"+_i_o_port_type+"/data_items/"},function(error,response,body) {console.log(body)});
⇒
object | relay/known_port_types/S/data_items/S/ |
Properties of a configuration item |
This object is a part of a composite value which is modified as a whole.
This object contains the following items:
name | Name |
regexp | Regular expression |
Sample uom
library write command (note that _i_o_port_type
and _configuration_item_properties
are variables):
uom.relay.known_port_types[_i_o_port_type].data_items[_configuration_item_properties]={name="Baud rate",regexp="^[1-9][0-9]*$"}
Sample JS request
write command (note that _i_o_port_type
and _configuration_item_properties
are variables):
request.put({url:"relay/known_port_types/"+_i_o_port_type+"/data_items/"+_configuration_item_properties+"/",body:{"name":"Baud rate","regexp":"^[1-9][0-9]*$"}});
string | relay/known_port_types/S/data_items/S/name/ |
Name of the data item |
Retrieving the value is denied if not administrative user
This string is a part of a composite value which is modified as a whole.
This string does not support direct modification.
Sample JS request
read command (note that _i_o_port_type
and _configuration_item_properties
are variables):
request.get({url:"relay/known_port_types/"+_i_o_port_type+"/data_items/"+_configuration_item_properties+"/name/"},function(error,response,body) {console.log(body)});
⇒
"Baud rate"
Sample curl
read command (note that :i_o_port_type
and :configuration_item_properties
are URL template arguments):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/relay/known_port_types/:i_o_port_type/data_items/:configuration_item_properties/name/"
⇒
"Baud rate"
string | relay/known_port_types/S/data_items/S/regexp/ |
Regular expression which the data item must match |
Retrieving the value is denied if not administrative user
This string is a part of a composite value which is modified as a whole.
This string does not support direct modification.
Sample CLI read command (note that i_o_port_type
and configuration_item_properties
are variables):
uom get "relay/known_port_types/${i_o_port_type}/data_items/${configuration_item_properties}/regexp"
⇒
"^[1-9][0-9]*$"
Sample requests
read command (note that _i_o_port_type
and _configuration_item_properties
are variables):
print(requests.get('http://192.168.0.100/restapi/relay/known_port_types/'+_i_o_port_type+'/data_items/'+_configuration_item_properties+'/regexp/',auth=auth,headers=headers).json())
⇒
'^[1-9][0-9]*$'
map | relay/known_port_types/S/channels/ |
Map of channels supported by the port |
Retrieving the value is denied if not administrative user
This map is a part of a composite value which is modified as a whole.
This map does not support direct modification.
This map contains Channel name elements.
Creating elements in this collection is not supported.
Sample CLI read command (note that i_o_port_type
is a variable):
uom get "relay/known_port_types/${i_o_port_type}/channels"
⇒
{"d":"Data"}
Sample curl
read command (note that :i_o_port_type
is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/relay/known_port_types/:i_o_port_type/channels/"
⇒
{"d":"Data"}
string | relay/known_port_types/S/channels/S/ |
Description of the channel |
Retrieving the value is denied if not administrative user
This string is a part of a composite value which is modified as a whole.
This string does not support direct modification.
Sample curl
read command (note that :i_o_port_type
and :channel_name
are URL template arguments):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/relay/known_port_types/:i_o_port_type/channels/:channel_name/"
⇒
"Data"
Sample requests
read command (note that _i_o_port_type
and _channel_name
are variables):
print(requests.get('http://192.168.0.100/restapi/relay/known_port_types/'+_i_o_port_type+'/channels/'+_channel_name+'/',auth=auth,headers=headers).json())
⇒
'Data'
map | relay/pins/ |
GPIO pins attached to the relay |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This map does not support direct modification if agent identifier is not equal to relay.
This map contains GPIO pin elements.
Sample requests
read command:
print(requests.get('http://192.168.0.100/restapi/relay/pins/',auth=auth,headers=headers).json())
⇒
{'aout8': {'level_bits': 0, 'latest_input_value': None, 'name': 'aout8', 'drive_logic_mapping': ['Z', 'Z', 'Z', 'Z'], 'mode_driver': 'kwtfw5', 'mode_bits': 1, 'level_driver': True, 'input_bits': 0}}
Sample CLI read command:
uom get "relay/pins"
⇒
...
object | relay/pins/S/ |
Object representing state and configuration of a GPIO pin |
This object contains the following items:
Sample CLI deletion command (note that gpio_pin
is a variable):
uom remove "relay/pins/${gpio_pin}"
Sample curl
deletion command (note that :gpio_pin
is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X DELETE -H "Accept: application/json" "http://192.168.0.100/restapi/relay/pins/:gpio_pin/"
See also GPIO pin: Name
See also GPIO pin: Input bits
See also GPIO pin: Mode bits
See also GPIO pin: Level bits
See also GPIO pin: Mode driver
See also GPIO pin: Level driver
See also GPIO pin: Pin drive mapping
See also GPIO pin: Latest input value, if any
See also GPIO pin: Configure tracking
See also GPIO pin: Configure mode driver
See also GPIO pin: Configure level driver
string | relay/pins/S/name/ |
User-visible pin name |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string represents a value in persistent storage.
Sample uom
library write command (note that _gpio_pin
is a variable):
uom.relay.pins[_gpio_pin].name="din27"
Sample curl
write command (note that :gpio_pin
is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "\"aio90\"" "http://192.168.0.100/restapi/relay/pins/:gpio_pin/name/"
number | relay/pins/S/input_bits/ |
Number of bits in pin input value |
The value represents count, the standard unit of which is the time (times).
The value is subject to the following constraints: all of the following is true:
Retrieving the value is denied if not administrative user
This number does not support direct modification if agent identifier is not equal to relay.
This number represents a value in persistent storage.
Sample curl
read command (note that :gpio_pin
is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/relay/pins/:gpio_pin/input_bits/"
⇒
1
Sample curl
write command (note that :gpio_pin
is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "1" "http://192.168.0.100/restapi/relay/pins/:gpio_pin/input_bits/"
number | relay/pins/S/mode_bits/ |
Number of bits in pin mode value |
The value represents count, the standard unit of which is the time (times).
The value is subject to the following constraints: all of the following is true:
Retrieving the value is denied if not administrative user
This number does not support direct modification if agent identifier is not equal to relay.
This number represents a value in persistent storage.
Sample CLI write command (note that gpio_pin
is a variable):
uom set "relay/pins/${gpio_pin}/mode_bits" "4"
Sample uom
library write command (note that _gpio_pin
is a variable):
uom.relay.pins[_gpio_pin].mode_bits=0
number | relay/pins/S/level_bits/ |
Number of bits in pin level value |
The value represents count, the standard unit of which is the time (times).
The value is subject to the following constraints: all of the following is true:
Retrieving the value is denied if not administrative user
This number does not support direct modification if agent identifier is not equal to relay.
This number represents a value in persistent storage.
Sample uom
library write command (note that _gpio_pin
is a variable):
uom.relay.pins[_gpio_pin].level_bits=8
Sample CLI read command (note that gpio_pin
is a variable):
uom get "relay/pins/${gpio_pin}/level_bits"
⇒
2
sum (variant) | relay/pins/S/mode_driver/ |
Configured signal driving the pin's mode (input or output) |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum does not support direct modification if all of the following is true:
0
This sum represents a value in persistent storage.
This sum can change as if by itself or indirectly because of other actions.
This sum can assume the following values:
constant true | Active | The pin is as active (output) as possible | |
constant false | Tristated | The pin is as inactive (input, hi-Z state) as possible | |
string | Net name | Name of the net providing the driving value | all of the following is true: |
string | Invalid net placeholder | A placeholder for a net that has been deleted or renamed (and always has the logical value false) | the value matches ^net_deleted:.*$ |
Sample curl
write command (note that :gpio_pin
is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "true" "http://192.168.0.100/restapi/relay/pins/:gpio_pin/mode_driver/"
Sample JS request
read command (note that _gpio_pin
is a variable):
request.get({url:"relay/pins/"+_gpio_pin+"/mode_driver/"},function(error,response,body) {console.log(body)});
⇒
true
sum (variant) | relay/pins/S/level_driver/ |
Configured signal driving the pin's output level |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum does not support direct modification if all of the following is true:
0
This sum represents a value in persistent storage.
This sum can change as if by itself or indirectly because of other actions.
This sum can assume the following values:
constant true | High | The pin is driven as high as possible given the current mode | |
constant false | Low | The pin is driven as low as possible given the current mode | |
string | Net name | Name of the net providing the driving value | all of the following is true: |
string | Invalid net placeholder | A placeholder for a net that has been deleted or renamed (and always has the logical value false) | the value matches ^net_deleted:.*$ |
Sample curl
write command (note that :gpio_pin
is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "\"f0\"" "http://192.168.0.100/restapi/relay/pins/:gpio_pin/level_driver/"
Sample CLI write command (note that gpio_pin
is a variable):
uom set "relay/pins/${gpio_pin}/level_driver" "false"
tuple | relay/pins/S/drive_logic_mapping/ |
Mapping of pin mode and level combinations to resulting pin IEEE1164 logic levels |
Retrieving the value is denied if not administrative user
This tuple is composite, i.e. is modified as a whole.
This tuple does not support direct modification if agent identifier is not equal to relay.
This tuple represents a value in persistent storage.
This tuple contains the following items:
1 | Low mode, low level |
2 | Low mode, high level |
3 | High mode, low level |
4 | High mode, high level |
Sample CLI read command (note that gpio_pin
is a variable):
uom get "relay/pins/${gpio_pin}/drive_logic_mapping"
⇒
["Z","Z","Z","Z"]
Sample JS request
write command (note that _gpio_pin
is a variable):
request.put({url:"relay/pins/"+_gpio_pin+"/drive_logic_mapping/",body:["Z","H","0","1"]});
sum (enumerated string) | relay/pins/S/drive_logic_mapping/1/ |
IEEE1164 logic level when pin is in the minimum mode, minimum level configuration |
Retrieving the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum does not support direct modification if agent identifier is not equal to relay.
This sum represents a value in persistent storage.
This sum can assume the following values:
constant "0" | Forcing 0 | Strong low signal as good as ground | |
constant "1" | Forcing 1 | Strong high signal as good as power supply voltage | |
constant "L" | Weak 0 | Low signal which is logically 0 but weak (e.g. from a pull-down resistor) | |
constant "H" | Weak 1 | High signal which is logically 1 but weak (e.g. from a pull-up resistor) | |
constant "Z" | High impedance | Pin pulled neither up nor down, signal defined by external circuitry |
Sample JS request
read command (note that _gpio_pin
is a variable):
request.get({url:"relay/pins/"+_gpio_pin+"/drive_logic_mapping/0/"},function(error,response,body) {console.log(body)});
⇒
"Z"
Sample JS request
write command (note that _gpio_pin
is a variable):
request.put({url:"relay/pins/"+_gpio_pin+"/drive_logic_mapping/0/",body:"Z"});
sum (enumerated string) | relay/pins/S/drive_logic_mapping/2/ |
IEEE1164 logic level when pin is in the minimum mode, maximum level configuration |
Retrieving the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum does not support direct modification if agent identifier is not equal to relay.
This sum represents a value in persistent storage.
This sum can assume the following values:
constant "0" | Forcing 0 | Strong low signal as good as ground | |
constant "1" | Forcing 1 | Strong high signal as good as power supply voltage | |
constant "L" | Weak 0 | Low signal which is logically 0 but weak (e.g. from a pull-down resistor) | |
constant "H" | Weak 1 | High signal which is logically 1 but weak (e.g. from a pull-up resistor) | |
constant "Z" | High impedance | Pin pulled neither up nor down, signal defined by external circuitry |
Sample uom
library read command (note that _gpio_pin
is a variable):
print(uom.dump(uom.relay.pins[_gpio_pin].drive_logic_mapping[2]))
⇒
"H"
Sample requests
write command (note that _gpio_pin
is a variable):
requests.put('http://192.168.0.100/restapi/relay/pins/'+_gpio_pin+'/drive_logic_mapping/1/',auth=auth,headers=headers,json='H')
sum (enumerated string) | relay/pins/S/drive_logic_mapping/3/ |
IEEE1164 logic level when pin is in the maximum mode, minimum level configuration |
Retrieving the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum does not support direct modification if agent identifier is not equal to relay.
This sum represents a value in persistent storage.
This sum can assume the following values:
constant "0" | Forcing 0 | Strong low signal as good as ground | |
constant "1" | Forcing 1 | Strong high signal as good as power supply voltage | |
constant "L" | Weak 0 | Low signal which is logically 0 but weak (e.g. from a pull-down resistor) | |
constant "H" | Weak 1 | High signal which is logically 1 but weak (e.g. from a pull-up resistor) | |
constant "Z" | High impedance | Pin pulled neither up nor down, signal defined by external circuitry |
Sample requests
read command (note that _gpio_pin
is a variable):
print(requests.get('http://192.168.0.100/restapi/relay/pins/'+_gpio_pin+'/drive_logic_mapping/2/',auth=auth,headers=headers).json())
⇒
'0'
Sample CLI write command (note that gpio_pin
is a variable):
uom set "relay/pins/${gpio_pin}/drive_logic_mapping/2" "\"0\""
sum (enumerated string) | relay/pins/S/drive_logic_mapping/4/ |
IEEE1164 logic level when pin is in the maximum mode, maximum level configuration |
Retrieving the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum does not support direct modification if agent identifier is not equal to relay.
This sum represents a value in persistent storage.
This sum can assume the following values:
constant "0" | Forcing 0 | Strong low signal as good as ground | |
constant "1" | Forcing 1 | Strong high signal as good as power supply voltage | |
constant "L" | Weak 0 | Low signal which is logically 0 but weak (e.g. from a pull-down resistor) | |
constant "H" | Weak 1 | High signal which is logically 1 but weak (e.g. from a pull-up resistor) | |
constant "Z" | High impedance | Pin pulled neither up nor down, signal defined by external circuitry |
Sample uom
library write command (note that _gpio_pin
is a variable):
uom.relay.pins[_gpio_pin].drive_logic_mapping[4]="Z"
Sample JS request
read command (note that _gpio_pin
is a variable):
request.get({url:"relay/pins/"+_gpio_pin+"/drive_logic_mapping/3/"},function(error,response,body) {console.log(body)});
⇒
"0"
sum (optional number) | relay/pins/S/latest_input_value/ |
Latest pin input value as reported by a net, if any |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
Using the sum as a field for indexing into the grandparent collection is denied
This sum does not support direct modification if agent identifier is not equal to relay.
This sum can change as if by itself or indirectly because of other actions.
This sum can assume the following values:
constant null | No latest input value | Input value not monitored so no latest value available | |
number | Latest input value | Latest pin input value as reported by a net |
Sample CLI read command (note that gpio_pin
is a variable):
uom get "relay/pins/${gpio_pin}/latest_input_value"
⇒
null
Sample requests
read command (note that _gpio_pin
is a variable):
print(requests.get('http://192.168.0.100/restapi/relay/pins/'+_gpio_pin+'/latest_input_value/',auth=auth,headers=headers).json())
⇒
None
array | relay/pins/S/configure_input_tracking/results: 1/1/ |
List of nets removed to fulfill the configuration result |
This array does not correspond to an actual resource.
This array contains Removed net elements.
string | relay/pins/S/configure_input_tracking/results: 1/1/N/ |
Identifier of the removed net |
This string does not correspond to an actual resource.
array | relay/pins/S/configure_input_tracking/results: 1/2/ |
List of nets added to fulfill the configuration result |
This array does not correspond to an actual resource.
This array contains Added net elements.
string | relay/pins/S/configure_input_tracking/results: 1/2/N/ |
Identifier of the added net |
This string does not correspond to an actual resource.
call | relay/pins/S/configure_input_tracking/ |
Set method of reporting the pin's value |
Performing the function call is denied if any of the following is true:
0
The call accepts the following arguments:
The call returns the following results:
Sample CLI invocation (note that gpio_pin
is a variable):
uom invoke "relay/pins/${gpio_pin}/configure_input_tracking" "\"push\""
⇒
[]
Sample JS request
invocation (note that _gpio_pin
is a variable):
request.post({url:"relay/pins/"+_gpio_pin+"/configure_input_tracking/",body:[null]});
⇒
[]
sum (optional enumerated string) | relay/pins/S/configure_input_tracking/arguments: 1/ |
Desired pin tracking configuration mode |
This sum does not correspond to an actual resource.
This sum can assume the following values:
constant null | None | Latest pin value is not updated | |
constant "pull" | Pull | Latest pin value is updated periodically | |
constant "push" | Push | Latest pin value is reported when changed |
tuple | relay/pins/S/configure_input_tracking/results: 1/ |
Changes in net structure performed by the call |
This tuple does not correspond to an actual resource.
This tuple contains the following items:
1 | Removed nets |
2 | Added nets |
See also Net changes: Removed nets
See also Net changes: Added nets
array | relay/pins/S/configure_mode_driver/results: 1/1/ |
List of nets removed to fulfill the configuration result |
This array does not correspond to an actual resource.
This array contains Removed net elements.
string | relay/pins/S/configure_mode_driver/results: 1/1/N/ |
Identifier of the removed net |
This string does not correspond to an actual resource.
array | relay/pins/S/configure_mode_driver/results: 1/2/ |
List of nets added to fulfill the configuration result |
This array does not correspond to an actual resource.
This array contains Added net elements.
string | relay/pins/S/configure_mode_driver/results: 1/2/N/ |
Identifier of the added net |
This string does not correspond to an actual resource.
call | relay/pins/S/configure_mode_driver/ |
Set pin's mode (input or output) driver |
Performing the function call is denied if any of the following is true:
0
The call accepts the following arguments:
The call returns the following results:
Sample JS request
invocation (note that _gpio_pin
is a variable):
request.post({url:"relay/pins/"+_gpio_pin+"/configure_mode_driver/",body:[false]});
⇒
[]
Sample requests
invocation (note that _gpio_pin
is a variable):
print(requests.post('http://192.168.0.100/restapi/relay/pins/'+_gpio_pin+'/configure_mode_driver/',auth=auth,headers=headers,json=['m6']).json())
⇒
{}
sum (variant) | relay/pins/S/configure_mode_driver/arguments: 1/ |
Desired signal driving the pin's mode (input or output) |
This sum does not correspond to an actual resource.
This sum can assume the following values:
constant true | High | The pin is driven as high as possible given the current mode | |
constant false | Low | The pin is driven as low as possible given the current mode | |
string | Net code | Code of the net providing the driving value |
tuple | relay/pins/S/configure_mode_driver/results: 1/ |
Changes in net structure performed by the call |
This tuple does not correspond to an actual resource.
This tuple contains the following items:
1 | Removed nets |
2 | Added nets |
See also Net changes: Removed nets
See also Net changes: Added nets
array | relay/pins/S/configure_level_driver/results: 1/1/ |
List of nets removed to fulfill the configuration result |
This array does not correspond to an actual resource.
This array contains Removed net elements.
string | relay/pins/S/configure_level_driver/results: 1/1/N/ |
Identifier of the removed net |
This string does not correspond to an actual resource.
array | relay/pins/S/configure_level_driver/results: 1/2/ |
List of nets added to fulfill the configuration result |
This array does not correspond to an actual resource.
This array contains Added net elements.
string | relay/pins/S/configure_level_driver/results: 1/2/N/ |
Identifier of the added net |
This string does not correspond to an actual resource.
call | relay/pins/S/configure_level_driver/ |
Set pin's output level driver |
Performing the function call is denied if any of the following is true:
0
The call accepts the following arguments:
The call returns the following results:
Sample uom
library invocation (note that _gpio_pin
is a variable):
print(uom.dump(uom.relay.pins[_gpio_pin].configure_level_driver(false)))
⇒
{}
Sample curl
invocation (note that :gpio_pin
is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -H "Content-type: application/json" -H "Accept: application/json" --data-binary "[\"q1\"]" "http://192.168.0.100/restapi/relay/pins/:gpio_pin/configure_level_driver/"
⇒
[]
sum (variant) | relay/pins/S/configure_level_driver/arguments: 1/ |
Desired signal driving the pin's output level |
This sum does not correspond to an actual resource.
This sum can assume the following values:
constant true | High | The pin is driven as high as possible given the current mode | |
constant false | Low | The pin is driven as low as possible given the current mode | |
string | Net code | Code of the net providing the driving value |
tuple | relay/pins/S/configure_level_driver/results: 1/ |
Changes in net structure performed by the call |
This tuple does not correspond to an actual resource.
This tuple contains the following items:
1 | Removed nets |
2 | Added nets |
See also Net changes: Removed nets
See also Net changes: Added nets
map | relay/nets/ |
Nets controlling the GPIO pins |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This map represents a value in persistent storage.
This map contains GPIO net elements.
Sample JS request
read command:
request.get({url:"relay/nets/"},function(error,response,body) {console.log(body)});
⇒
Sample uom
library write command:
uom.relay.nets={b2={expression="(not net[\"zm81\"])",latest_value=0,name="b2",tracking=null},l30={expression=false,latest_value=0,name="l30",tracking="push"},swxym41={expression=false,name="swxym41",tracking="pull"},t5={expression="net[\"ibnz79\"]",name="t5",tracking="pull"},zcvxociv7={expression="(not net[\"ybj97\"])",latest_value=0,name="zcvxociv7",tracking="push"}}
See also Nets: GPIO net
object | relay/nets/S/ |
Object representing a state of a GPIO net signal |
This object contains the following items:
name | Name |
expression | Expression |
tracking | Tracking |
latest_value | Latest value |
Sample CLI deletion command (note that gpio_net
is a variable):
uom remove "relay/nets/${gpio_net}"
Sample uom
library read command (note that _gpio_net
is a variable):
print(uom.dump(uom.relay.nets[_gpio_net]))
⇒
{expression=false,latest_value=10,name="ck59",tracking=null}
string | relay/nets/S/name/ |
User-visible net name |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string represents a value in persistent storage.
Sample JS request
read command (note that _gpio_net
is a variable):
request.get({url:"relay/nets/"+_gpio_net+"/name/"},function(error,response,body) {console.log(body)});
⇒
"b24"
Sample requests
write command (note that _gpio_net
is a variable):
requests.put('http://192.168.0.100/restapi/relay/nets/'+_gpio_net+'/name/',auth=auth,headers=headers,json='vselmc5')
string | relay/nets/S/expression/ |
Expression governing the net's value |
The value contains Lua source (has native MIME type text/x-lua
).
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string represents a value in persistent storage.
Sample curl
write command (note that :gpio_net
is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "\"net[\\\"up5\\\"]\"" "http://192.168.0.100/restapi/relay/nets/:gpio_net/expression/"
Sample requests
read command (note that _gpio_net
is a variable):
print(requests.get('http://192.168.0.100/restapi/relay/nets/'+_gpio_net+'/expression/',auth=auth,headers=headers).json())
⇒
'(neg((not shr(apin["ain14"],apin["ain52"])),apin["dout17"]) * (apin["din6"] <= net["j95"]))'
sum (optional enumerated string) | relay/nets/S/tracking/ |
Method of reporting the net's value |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
constant null | None | Net value is not updated | |
constant "pull" | Pull | Net value is updated periodically | |
constant "push" | Push | Net value is reported when changed |
Sample JS request
write command (note that _gpio_net
is a variable):
request.put({url:"relay/nets/"+_gpio_net+"/tracking/",body:"pull"});
Sample curl
write command (note that :gpio_net
is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "\"pull\"" "http://192.168.0.100/restapi/relay/nets/:gpio_net/tracking/"
number | relay/nets/S/latest_value/ |
Latest net value |
The value is unconditionally set to 0
on creation and doesn't have to be supplied (if it is, it must match)
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
Using the number as a field for indexing into the grandparent collection is denied
This number does not support direct modification if agent identifier is not equal to relay.
Sample curl
read command (note that :gpio_net
is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/relay/nets/:gpio_net/latest_value/"
⇒
2
Sample CLI read command (note that gpio_net
is a variable):
uom get "relay/nets/${gpio_net}/latest_value"
⇒
1
sum (boolean) | relay/fuses_enabled/ |
Allow use of measurement results to conditionally switch off outlets, enabling safety shutdown and correct power loss operation |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum is expected to be visible to advanced users only.
This sum can assume the following values:
constant true | Enabled | The feature is enabled | |
constant false | Disabled | The feature is disabled |
Sample JS request
read command:
request.get({url:"relay/fuses_enabled/"},function(error,response,body) {console.log(body)});
⇒
false
Sample CLI write command:
uom set "relay/fuses_enabled" "false"
sum (optional number) | relay/min_relay_voltage/ |
Minimum relay voltage below which it cannot drive outlets and they must be considered off, if any |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum is expected to be visible to advanced users only.
This sum can assume the following values:
constant null | Disable relay undervoltage handling | Ignore relay undervoltage. This is unsafe! | |
number | Minimum relay voltage | Minimum relay voltage below which it cannot drive outlets and they must be considered off | the value is greater than 0 |
Sample JS request
write command:
request.put({url:"relay/min_relay_voltage/",body:8});
Sample uom
library read command:
print(uom.dump(uom.relay.min_relay_voltage))
⇒
8
sum (optional number) | relay/fuse_relatch/ |
Time to hold outlets off after switching them off due to measurement limits being hit, if any |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
constant null | Latch OFF | Switch outlets off until the user takes action | |
number | Measurement-driven relatch timeout | Time to hold outlets off after switching them off due to measurement limits being hit | the value is greater than 0 |
Sample requests
read command:
print(requests.get('http://192.168.0.100/restapi/relay/fuse_relatch/',auth=auth,headers=headers).json())
⇒
None
Sample CLI write command:
uom set "relay/fuse_relatch" "10"
sum (boolean) | relay/keypad_enabled/ |
Flag indicating whether keypad is enabled or disabled |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
constant true | Enabled | The feature is enabled | |
constant false | Disabled | The feature is disabled |
Sample CLI read command:
uom get "relay/keypad_enabled"
⇒
true
Sample CLI write command:
uom set "relay/keypad_enabled" "false"
sum (boolean) | relay/all_caps/ |
Flag enabling all-caps display of text |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
constant true | All CAPS | All LCD strings are displayed in capital letters | |
constant false | Standard mode | LCD strings are displayed as configured without capitalization |
Sample requests
write command:
requests.put('http://192.168.0.100/restapi/relay/all_caps/',auth=auth,headers=headers,json=False)
Sample JS request
read command:
request.get({url:"relay/all_caps/"},function(error,response,body) {console.log(body)});
⇒
true
string | relay/beep_sequence/ |
Signal sequence for beeper activation |
The value is subject to the following constraints: the value matches ^[01. _-]*$
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
Sample curl
read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/relay/beep_sequence/"
⇒
"0"
Sample requests
write command:
requests.put('http://192.168.0.100/restapi/relay/beep_sequence/',auth=auth,headers=headers,json='0')
string | relay/backlight_sequence/ |
Signal sequence for backlight blinking |
The value is subject to the following constraints: the value matches ^[01. _-]*$
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
Sample requests
read command:
print(requests.get('http://192.168.0.100/restapi/relay/backlight_sequence/',auth=auth,headers=headers).json())
⇒
'0'
Sample JS request
read command:
request.get({url:"relay/backlight_sequence/"},function(error,response,body) {console.log(body)});
⇒
"0"
number | relay/lcd_columns/ |
Number of LCD columns |
The value represents count, the standard unit of which is the time (times).
The value is subject to the following constraints: all of the following is true:
This number does not support direct modification.
This number represents a value in persistent storage.
Sample CLI read command:
uom get "relay/lcd_columns"
⇒
16
Sample uom
library read command:
print(uom.dump(uom.relay.lcd_columns))
⇒
16
number | relay/lcd_rows/ |
Number of LCD rows |
The value represents count, the standard unit of which is the time (times).
The value is subject to the following constraints: all of the following is true:
This number does not support direct modification.
This number represents a value in persistent storage.
Sample JS request
read command:
request.get({url:"relay/lcd_rows/"},function(error,response,body) {console.log(body)});
⇒
2
Sample requests
read command:
print(requests.get('http://192.168.0.100/restapi/relay/lcd_rows/',auth=auth,headers=headers).json())
⇒
2
array | relay/user_lines/ |
Array of strings to override LCD lines with, from top to bottom |
The value is subject to the following constraints: length of the value is equal to LCD row count
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This array contains User LCD line, if any elements.
Sample requests
write command:
requests.put('http://192.168.0.100/restapi/relay/user_lines/',auth=auth,headers=headers,json=[None, None])
Sample JS request
write command:
request.put({url:"relay/user_lines/",body:[null,null]});
sum (optional string) | relay/user_lines/N/ |
The line to override the corresponding line of the LCD output with, if any |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
Changes to this sum may have an effect besides setting value.
This sum can assume the following values:
constant null | No user LCD line | Do not override the corresponding line of the ordinary LCD output | |
string | User LCD line | The line to override the corresponding line of the LCD output with |
Sample uom
library read command (note that _user_lcd_line__if_any_index
is a variable):
print(uom.dump(uom.relay.user_lines[_user_lcd_line__if_any_index]))
⇒
null
Sample requests
read command (note that _user_lcd_line__if_any_index
is a variable):
print(requests.get('http://192.168.0.100/restapi/relay/user_lines/'+str(_user_lcd_line__if_any_index)+'/',auth=auth,headers=headers).json())
⇒
None
sum (optional number) | relay/user_message_force_timeout/ |
Time during which the user script LCD message always overrides ordinary LCD output, if any |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
constant null | Always force user message | The user message always overrides ordinary LCD output | |
number | User message force display timeout | Time during which the user script LCD message always overrides ordinary LCD output | the value is greater or equal to 0 |
Sample JS request
read command:
request.get({url:"relay/user_message_force_timeout/"},function(error,response,body) {console.log(body)});
⇒
2
Sample uom
library write command:
uom.relay.user_message_force_timeout=null
sum (optional number) | relay/user_message_timeout/ |
Time after which the user script LCD message is replaced by ordinary LCD output even if nothing else happens, if any |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
constant null | Show user message indefinitely | The user message stays on LCD until ordinary LCD output changes | |
number | User message display timeout | Time after which the user script LCD message is replaced by ordinary LCD output even if nothing else happens | the value is greater or equal to 0 |
Sample curl
write command:
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "3" "http://192.168.0.100/restapi/relay/user_message_timeout/"
Sample JS request
write command:
request.put({url:"relay/user_message_timeout/",body:3});
object | relay/notifications/ |
Relay-state-related notifications |
Retrieving the value is denied if not administrative user
This object does not support direct modification.
This object contains the following items:
parameter_kinds | Parameter kinds |
events | Events |
Sample CLI read command:
uom get "relay/notifications"
⇒
...
Sample uom
library read command:
print(uom.dump(uom.relay.notifications))
⇒
<...>
See also Notifications: Parameter kinds
map | relay/notifications/events/ |
Event templates |
Retrieving the value is denied if not administrative user
This map is composite, i.e. is modified as a whole.
This map does not support direct modification.
This map contains Event elements.
Creating elements in this collection is not supported.
Sample requests
read command:
print(requests.get('http://192.168.0.100/restapi/relay/notifications/events/',auth=auth,headers=headers).json())
⇒
<...>
Sample CLI read command:
uom get "relay/notifications/events"
⇒
...
See also Events: Event
object | relay/notifications/parameter_kinds/ |
Kinds of event parameters |
This object does not correspond to an actual resource.
This object contains the following items:
outlet | Outlet |
state | Configured state |
transient_state | Transient state |
physical_state | Physical state |
locked | Lock state |
number | relay/notifications/parameter_kinds/outlet/ |
Outlet index |
The value is subject to the following constraints: outlets[the value]
sum (boolean) | relay/notifications/parameter_kinds/state/ |
Saved configured state of the outlet |
This sum can assume the following values:
constant true | On | The outlet is powered | |
constant false | Off | The outlet is not powered |
sum (boolean) | relay/notifications/parameter_kinds/transient_state/ |
Current expected state of the outlet |
This sum can assume the following values:
constant true | On | The outlet is powered | |
constant false | Off | The outlet is not powered |
sum (boolean) | relay/notifications/parameter_kinds/physical_state/ |
Current actual state of the outlet |
This sum can assume the following values:
constant true | On | The outlet is powered | |
constant false | Off | The outlet is not powered |
sum (boolean) | relay/notifications/parameter_kinds/locked/ |
Indicates whether the outlet state is locked from keypad |
This sum can assume the following values:
constant true | Locked | The outlet state cannot be changed | |
constant false | Unlocked | The outlet state can be changed |
object | relay/notifications/events/S/parameters/N/ |
Properties of a parameter associated with the event |
This object is a part of a composite value which is modified as a whole.
This object contains the following items:
id | Identifier |
has_fixed_value | Fixed value flag |
fixed_value | Fixed value |
Sample curl
write command (note that :event
and :event_parameter_index
are URL template arguments):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "{\"fixed_value\":null,\"has_fixed_value\":false,\"id\":\"outlet\"}" "http://192.168.0.100/restapi/relay/notifications/events/:event/parameters/:event_parameter_index/"
Sample CLI write command (note that event
and event_parameter_index
are variables):
uom set "relay/notifications/events/${event}/parameters/${event_parameter_index}" "{\"fixed_value\":true,\"has_fixed_value\":true,\"id\":\"transient_state\"}"
string | relay/notifications/events/S/parameters/N/id/ |
Parameter identifier |
The value is subject to the following constraints: parameter kinds[the value]
Retrieving the value is denied if not administrative user
This string is a part of a composite value which is modified as a whole.
This string does not support direct modification.
Sample curl
read command (note that :event
and :event_parameter_index
are URL template arguments):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/relay/notifications/events/:event/parameters/:event_parameter_index/id/"
⇒
"outlet"
Sample uom
library read command (note that _event
and _event_parameter_index
are variables):
print(uom.dump(uom.relay.notifications.events[_event].parameters[_event_parameter_index].id))
⇒
"outlet"
sum (boolean) | relay/notifications/events/S/parameters/N/has_fixed_value/ |
Flag indicating that the parameter's value for this event is fixed |
Retrieving the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum does not support direct modification.
This sum can assume the following values:
constant true | Fixed | The value is fixed | |
constant false | Variable | The value is variable |
Sample uom
library read command (note that _event
and _event_parameter_index
are variables):
print(uom.dump(uom.relay.notifications.events[_event].parameters[_event_parameter_index].has_fixed_value))
⇒
false
Sample CLI read command (note that event
and event_parameter_index
are variables):
uom get "relay/notifications/events/${event}/parameters/${event_parameter_index}/has_fixed_value"
⇒
false
sum (variant) | relay/notifications/events/S/parameters/N/fixed_value/ |
Fixed parameter value for this particular event |
Retrieving the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum does not support direct modification.
This sum can assume the following values:
constant null | Null | Null | |
constant true | True | True | |
constant false | False | False | |
string | String | This string | |
number | Number | This number |
Sample CLI read command (note that event
and event_parameter_index
are variables):
uom get "relay/notifications/events/${event}/parameters/${event_parameter_index}/fixed_value"
⇒
null
Sample uom
library read command (note that _event
and _event_parameter_index
are variables):
print(uom.dump(uom.relay.notifications.events[_event].parameters[_event_parameter_index].fixed_value))
⇒
null
object | relay/notifications/events/S/ |
Event template |
This object is a part of a composite value which is modified as a whole.
This object contains the following items:
message_template | Message template |
severity | Severity |
parameters | Event parameters |
Sample JS request
read command (note that _event
is a variable):
request.get({url:"relay/notifications/events/"+_event+"/"},function(error,response,body) {console.log(body)});
⇒
{"severity":7,"message_template":["outlet ",0," expected to be OFF"],"parameters":[{"fixed_value":null,"has_fixed_value":false,"id":"outlet"},{"fixed_value":false,"has_fixed_value":true,"id":"transient_state"}]}
Sample uom
library write command (note that _event
is a variable):
uom.relay.notifications.events[_event]={message_template={"outlet ",0," configured to be OFF at power-up"},parameters={{fixed_value=null,has_fixed_value=false,id="outlet"},{fixed_value=false,has_fixed_value=true,id="state"}},severity=6}
array | relay/notifications/events/S/message_template/ |
Template for human-readable message generation |
Retrieving the value is denied if not administrative user
This array is a part of a composite value which is modified as a whole.
This array does not support direct modification.
This array contains Message template element elements.
Creating elements in this collection is not supported.
Sample requests
read command (note that _event
is a variable):
print(requests.get('http://192.168.0.100/restapi/relay/notifications/events/'+_event+'/message_template/',auth=auth,headers=headers).json())
⇒
['outlet ', 0, ' configured to be OFF at power-up']
Sample curl
read command (note that :event
is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/relay/notifications/events/:event/message_template/"
⇒
["outlet ",0," configured to be ON at power-up"]
sum (variant) | relay/notifications/events/S/message_template/N/ |
Element of human-readable message template |
Retrieving the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum does not support direct modification.
This sum can assume the following values:
string | String | Fixed string | |
number | Parameter | Index of message parameter to insert | event parameters[the value] |
Sample curl
read command (note that :event
and :message_template_element_index
are URL template arguments):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/relay/notifications/events/:event/message_template/:message_template_element_index/"
⇒
0
Sample requests
read command (note that _event
and _message_template_element_index
are variables):
print(requests.get('http://192.168.0.100/restapi/relay/notifications/events/'+_event+'/message_template/'+str(_message_template_element_index)+'/',auth=auth,headers=headers).json())
⇒
' remains OFF at power-up'
sum (enumerated number) | relay/notifications/events/S/severity/ |
Severity rating assigned to the event |
Retrieving the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum does not support direct modification.
This sum can assume the following values:
constant 1 | Emergency | Treat the event as an emergency | |
constant 2 | Alert | Treat the event as an alert | |
constant 3 | Critical | Treat the event as critical | |
constant 4 | Error | Treat the event as an error | |
constant 5 | Warning | Treat the event as a warning | |
constant 6 | Notice | Treat the event as a notice | |
constant 7 | Informational | Treat the event as informational | |
constant 8 | Debug | Treat the event as debugging-related |
Sample requests
read command (note that _event
is a variable):
print(requests.get('http://192.168.0.100/restapi/relay/notifications/events/'+_event+'/severity/',auth=auth,headers=headers).json())
⇒
6
Sample JS request
read command (note that _event
is a variable):
request.get({url:"relay/notifications/events/"+_event+"/severity/"},function(error,response,body) {console.log(body)});
⇒
6
array | relay/notifications/events/S/parameters/ |
Additional data associated with the event |
Retrieving the value is denied if not administrative user
This array is a part of a composite value which is modified as a whole.
This array does not support direct modification.
This array contains Event parameter elements.
Creating elements in this collection is not supported.
Sample CLI read command (note that event
is a variable):
uom get "relay/notifications/events/${event}/parameters"
⇒
[{"fixed_value":null,"has_fixed_value":false,"id":"outlet"},{"fixed_value":true,"has_fixed_value":true,"id":"state"}]
Sample uom
library read command (note that _event
is a variable):
print(uom.dump(uom.relay.notifications.events[_event].parameters))
⇒
{{fixed_value=null,has_fixed_value=false,id="outlet"},{fixed_value=true,has_fixed_value=true,id="state"}}
See also Event parameters: Event parameter