Template:Networking trb1 manual input output status: Difference between revisions
Appearance
No edit summary |
Gytispieze (talk | contribs) No edit summary |
||
| (3 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
<pre> | <pre> | ||
ioman.gpio. | ioman.gpio.dio0 | ||
ioman.gpio. | ioman.gpio.dio1 | ||
</pre> | </pre> | ||
root@Teltonika-{{{name}}}:~# ubus call ioman.gpio. | In order to read values, call command <b>ubus call <i>value</i> status </b>: | ||
root@Teltonika-{{{name}}}:~# ubus call ioman.gpio.dio1 status | |||
{ | { | ||
"value": "0", | "value": "0", | ||
| Line 13: | Line 15: | ||
<ul> | <ul> | ||
<li><b> | <li><b>dio0</b> is configurable input / output: | ||
<ul> | <ul> | ||
<li>"value": "<b>0</b>" means low level state.</li> | <li>"value": "<b>0</b>" means low level state.</li> | ||
<li>"value": "<b>1</b>" means high level state.</li> | <li>"value": "<b>1</b>" means high level state.</li> | ||
<li>"direction": "<b>in</b>" means input state.</li> | |||
<li>"direction": "<b>out</b>" means output state.</li> | |||
</ul> | </ul> | ||
</li> | </li> | ||
</ul> | </ul> | ||
To change input settings, use the <i><b>update</i></b> command and specify a value: | |||
ubus call ioman.gpio.dio0 update '{"value":"0"}' | |||
ubus call ioman.gpio.dio0 update '{"value":"1"}' | |||
ubus call ioman.gpio.dio0 update '{"direction":"in"}' | |||
ubus call ioman.gpio.dio0 update '{"direction":"out"}' | |||
Latest revision as of 07:12, 19 August 2021
ioman.gpio.dio0 ioman.gpio.dio1
In order to read values, call command ubus call value status :
root@Teltonika-{{{name}}}:~# ubus call ioman.gpio.dio1 status
{
"value": "0",
"direction": "in",
"bi_dir": false,
"invert_input": false
}
- dio0 is configurable input / output:
- "value": "0" means low level state.
- "value": "1" means high level state.
- "direction": "in" means input state.
- "direction": "out" means output state.
To change input settings, use the update command and specify a value:
ubus call ioman.gpio.dio0 update '{"value":"0"}'
ubus call ioman.gpio.dio0 update '{"value":"1"}'
ubus call ioman.gpio.dio0 update '{"direction":"in"}'
ubus call ioman.gpio.dio0 update '{"direction":"out"}'