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

From Teltonika Networks Wiki
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 
<pre>
 
<pre>
ioman.gpio.dio0 - Configurable input/output (PIN3)
+
ioman.gpio.dio0
ioman.gpio.dio1 - Configurable input/output (PIN4)
+
ioman.gpio.dio1
 
</pre>
 
</pre>
  
Line 15: Line 15:
  
 
<ul>
 
<ul>
     <li><b>dio0</b> is configurable input / output:
+
     <li><b>din1</b> is the input:
 +
        <ul>
 +
            <li>"value": "<b>0</b>" means low level state.</li>
 +
            <li>"value": "<b>1</b>" means high level state.</li>
 +
        </ul>
 +
    </li>
 +
    <li><b>dout1</b> is the 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"}'
 

Revision as of 12:23, 14 December 2020

ioman.gpio.dio0
ioman.gpio.dio1

Call command ubus call value status:

root@Teltonika-{{{name}}}:~# ubus call ioman.gpio.dio0 status
{
        "value": "0",
        "direction": "in",
        "bi_dir": false,
        "invert_input": false
}
  • din1 is the input:
    • "value": "0" means low level state.
    • "value": "1" means high level state.
  • dout1 is the output:
    • "value": "0" means low level state.
    • "value": "1" means high level state.