Difference between revisions of "Template:Networking trb16 manual input output status"

From Teltonika Networks Wiki
(Created page with "<pre> ioman.gpio.dio0 ioman.gpio.dio1 </pre> In order to read values, call command <b>ubus call <i>value</i> status </b>: root@Teltonika-{{{name}}}:~# ubus call ioman.gpio....")
Line 1: Line 1:
 
<pre>
 
<pre>
ioman.adc.pwr0
 
 
ioman.gpio.dio0
 
ioman.gpio.dio0
 
ioman.gpio.dio1
 
ioman.gpio.dio1
Line 26: Line 25:
 
</ul>
 
</ul>
  
To change input settings, use the <i><b>update</b></i> command and specify a value:
+
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":"0"}'

Revision as of 10:08, 25 June 2024

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"}'