This is the description of the Shell API bindings for the Industrial Analog Out Bricklet. General information and technical specifications for the Industrial Analog Out Bricklet are summarized in its hardware description.
An installation guide for the Shell API bindings is part of their general description.
The example code below is Public Domain (CC0 1.0).
Download (example-simple-current.sh)
1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/sh
# Connects to localhost:4223 by default, use --host and --port to change this
uid=XYZ # Change XYZ to the UID of your Industrial Analog Out Bricklet
# Set output current to 4.5mA
tinkerforge call industrial-analog-out-bricklet $uid set-current 4500
tinkerforge call industrial-analog-out-bricklet $uid enable
echo "Press key to exit"; read dummy
tinkerforge call industrial-analog-out-bricklet $uid disable
|
Download (example-simple-voltage.sh)
1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/sh
# Connects to localhost:4223 by default, use --host and --port to change this
uid=XYZ # Change XYZ to the UID of your Industrial Analog Out Bricklet
# Set output voltage to 3.3V
tinkerforge call industrial-analog-out-bricklet $uid set-voltage 3300
tinkerforge call industrial-analog-out-bricklet $uid enable
echo "Press key to exit"; read dummy
tinkerforge call industrial-analog-out-bricklet $uid disable
|
Possible exit codes for all tinkerforge
commands are:
argparse
module is missingThe common options of the call
and dispatch
commands are documented
here. The specific command structure is shown below.
call
industrial-analog-out-bricklet
[<option>..] <uid> <function> [<argument>..]¶Parameters: |
|
---|
The call
command is used to call a function of the Industrial Analog Out Bricklet. It can take several
options:
--help
shows help for the specific call
command and exits--list-functions
shows a list of known functions of the Industrial Analog Out Bricklet and exitsdispatch
industrial-analog-out-bricklet
[<option>..] <uid> <callback>¶Parameters: |
|
---|
The dispatch
command is used to dispatch a callback of the Industrial Analog Out Bricklet. It can
take several options:
--help
shows help for the specific dispatch
command and exits--list-callbacks
shows a list of known callbacks of the Industrial Analog Out Bricklet and exitsindustrial-analog-out-bricklet
<uid> <function>
[<option>..] [<argument>..]¶Parameters: |
|
---|
The <function>
to be called can take different options depending of its
kind. All functions can take the following options:
--help
shows help for the specific function and exitsGetter functions can take the following options:
--execute <command>
shell command line to execute for each incoming
response (see section about output formatting
for details)Setter functions can take the following options:
--expect-response
requests response and waits for itThe --expect-response
option for setter functions allows to detect
timeouts and other error conditions calls of setters as well. The device will
then send a response for this purpose. If this option is not given for a
setter function then no response is sent and errors are silently ignored,
because they cannot be detected.
industrial-analog-out-bricklet
<uid> <callback>
[<option>..]¶Parameters: |
|
---|
The <callback>
to be dispatched can take several options:
--help
shows help for the specific callback and exits--execute <command>
shell command line to execute for each incoming
response (see section about output formatting
for details)industrial-analog-out-bricklet
<uid> enable
¶Output: |
|
---|
Enables the output of voltage and current.
The default is disabled.
industrial-analog-out-bricklet
<uid> disable
¶Output: |
|
---|
Disables the output of voltage and current.
The default is disabled.
industrial-analog-out-bricklet
<uid> is-enabled
¶Output: |
|
---|
Returns true if output of voltage and current is enabled, false otherwise.
industrial-analog-out-bricklet
<uid> set-voltage
<voltage>¶Parameters: |
|
---|---|
Output: |
|
Sets the output voltage.
The output voltage and output current are linked. Changing the output voltage also changes the output current.
industrial-analog-out-bricklet
<uid> get-voltage
¶Output: |
|
---|
Returns the voltage as set by set-voltage
.
industrial-analog-out-bricklet
<uid> set-current
<current>¶Parameters: |
|
---|---|
Output: |
|
Sets the output current.
The output current and output voltage are linked. Changing the output current also changes the output voltage.
industrial-analog-out-bricklet
<uid> get-current
¶Output: |
|
---|
Returns the current as set by set-current
.
industrial-analog-out-bricklet
<uid> set-configuration
<voltage-range> <current-range>¶Parameters: |
|
---|---|
Output: |
|
Configures the voltage and current range.
Possible voltage ranges are:
Possible current ranges are:
The resolution will always be 12 bit. This means, that the precision is higher with a smaller range.
The following symbols are available for this function:
For <voltage-range>:
For <current-range>:
industrial-analog-out-bricklet
<uid> get-configuration
¶Output: |
|
---|
Returns the configuration as set by set-configuration
.
The following symbols are available for this function:
For voltage-range:
For current-range:
industrial-analog-out-bricklet
<uid> get-identity
¶Output: |
|
---|
Returns the UID, the UID where the Bricklet is connected to, the position, the hardware and firmware version as well as the device identifier.
The position can be 'a', 'b', 'c', 'd', 'e', 'f', 'g' or 'h' (Bricklet Port). A Bricklet connected to an Isolator Bricklet is always at position 'z'.
The device identifier numbers can be found here.