-
Notifications
You must be signed in to change notification settings - Fork 6
User Guide
Ingvord edited this page May 2, 2018
·
14 revisions
//TODO explain interface
- Open Settings tab
- In the
Tango host
widget type new tango host {host}:{port} - Click on
+
button
NOTE Devices tree updates when new tango_host is added
- restart device using admin server
- difference with devices filter from settings
- Add attr to dashboard
- filter
- remove
- plot
- is updated only when visible
- limitation devices number ??? (~10)
- status icon
- readonly (writing attributes in device control panel);
- device control panel updates automatically when attribute is selected in the list
- different from dashboard - all attributes of the device all ready added
- describe each in two words
- update attributes config (requires)
- header (device name + exported)
- filter by content
- execute command
- read/write/plot attribute
- read pipe
- request status
- user log
- application log
- github
- user name (opens settings)
- log out
- Open Settings tab
return PlatformContext.rest.fetchHost('localhost:10000')
.then(host => host.fetchDevice('sys/tg_test/1'))
.then(device => device.fetchAttr('double_scalar'))
.then(attr => attr.read())
.then(value => value.value)