This is the description of the Shell API bindings for the Laser Range Finder Bricklet. General information and technical specifications for the Laser Range Finder 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).
1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/sh
# Connects to localhost:4223 by default, use --host and --port to change this
uid=XYZ # Change XYZ to the UID of your Laser Range Finder Bricklet
# Turn laser on and wait 250ms for very first measurement to be ready
tinkerforge call laser-range-finder-bricklet $uid enable-laser
sleep 0.25
# Get current distance
tinkerforge call laser-range-finder-bricklet $uid get-distance
tinkerforge call laser-range-finder-bricklet $uid disable-laser # Turn laser off
|
Download (example-callback.sh)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/bin/sh
# Connects to localhost:4223 by default, use --host and --port to change this
uid=XYZ # Change XYZ to the UID of your Laser Range Finder Bricklet
# Turn laser on and wait 250ms for very first measurement to be ready
tinkerforge call laser-range-finder-bricklet $uid enable-laser
sleep 0.25
# Handle incoming distance callbacks
tinkerforge dispatch laser-range-finder-bricklet $uid distance &
# Set period for distance callback to 0.2s (200ms)
# Note: The distance callback is only called every 0.2 seconds
# if the distance has changed since the last call!
tinkerforge call laser-range-finder-bricklet $uid set-distance-callback-period 200
echo "Press key to exit"; read dummy
tinkerforge call laser-range-finder-bricklet $uid disable-laser # Turn laser off
kill -- -$$ # Stop callback dispatch in background
|
Download (example-threshold.sh)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #!/bin/sh
# Connects to localhost:4223 by default, use --host and --port to change this
uid=XYZ # Change XYZ to the UID of your Laser Range Finder Bricklet
# Turn laser on and wait 250ms for very first measurement to be ready
tinkerforge call laser-range-finder-bricklet $uid enable-laser
sleep 0.25
# Get threshold callbacks with a debounce time of 10 seconds (10000ms)
tinkerforge call laser-range-finder-bricklet $uid set-debounce-period 10000
# Handle incoming distance reached callbacks
tinkerforge dispatch laser-range-finder-bricklet $uid distance-reached &
# Configure threshold for distance "greater than 20 cm"
tinkerforge call laser-range-finder-bricklet $uid set-distance-callback-threshold threshold-option-greater 20 0
echo "Press key to exit"; read dummy
tinkerforge call laser-range-finder-bricklet $uid disable-laser # Turn laser off
kill -- -$$ # Stop callback dispatch in background
|
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
laser-range-finder-bricklet
[<option>..] <uid> <function> [<argument>..]¶Parameters: |
|
---|
The call
command is used to call a function of the Laser Range Finder 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 Laser Range Finder Bricklet and exitsdispatch
laser-range-finder-bricklet
[<option>..] <uid> <callback>¶Parameters: |
|
---|
The dispatch
command is used to dispatch a callback of the Laser Range Finder 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 Laser Range Finder Bricklet and exitslaser-range-finder-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.
laser-range-finder-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)laser-range-finder-bricklet
<uid> get-distance
¶Output: |
|
---|
Returns the measured distance.
Sensor hardware version 1 (see get-sensor-hardware-version
) cannot
measure distance and velocity at the same time. Therefore, the distance mode
has to be enabled using set-mode
.
Sensor hardware version 3 can measure distance and velocity at the same
time. Also the laser has to be enabled, see enable-laser
.
If you want to get the distance periodically, it is recommended to
use the distance
callback and set the period with
set-distance-callback-period
.
laser-range-finder-bricklet
<uid> get-velocity
¶Output: |
|
---|
Returns the measured velocity.
Sensor hardware version 1 (see get-sensor-hardware-version
) cannot
measure distance and velocity at the same time. Therefore, the velocity mode
has to be enabled using set-mode
.
Sensor hardware version 3 can measure distance and velocity at the same
time, but the velocity measurement only produces stables results if a fixed
measurement rate (see set-configuration
) is configured. Also the laser
has to be enabled, see enable-laser
.
If you want to get the velocity periodically, it is recommended to
use the velocity
callback and set the period with
set-velocity-callback-period
.
laser-range-finder-bricklet
<uid> set-mode
<mode>¶Parameters: |
|
---|---|
Output: |
|
Note
This function is only available if you have a LIDAR-Lite sensor with hardware
version 1. Use set-configuration
for hardware version 3. You can check
the sensor hardware version using get-sensor-hardware-version
.
The LIDAR-Lite sensor (hardware version 1) has five different modes. One mode is for distance measurements and four modes are for velocity measurements with different ranges.
The following modes are available:
The following symbols are available for this function:
For <mode>:
laser-range-finder-bricklet
<uid> get-mode
¶Output: |
|
---|
Returns the mode as set by set-mode
.
The following symbols are available for this function:
For mode:
laser-range-finder-bricklet
<uid> enable-laser
¶Output: |
|
---|
Activates the laser of the LIDAR.
We recommend that you wait 250ms after enabling the laser before
the first call of get-distance
to ensure stable measurements.
laser-range-finder-bricklet
<uid> disable-laser
¶Output: |
|
---|
Deactivates the laser of the LIDAR.
laser-range-finder-bricklet
<uid> is-laser-enabled
¶Output: |
|
---|
Returns true if the laser is enabled, false otherwise.
laser-range-finder-bricklet
<uid> set-configuration
<acquisition-count> <enable-quick-termination> <threshold-value> <measurement-frequency>¶Parameters: |
|
---|---|
Output: |
|
Note
This function is only available if you have a LIDAR-Lite sensor with hardware
version 3. Use set-mode
for hardware version 1. You can check
the sensor hardware version using get-sensor-hardware-version
.
The Acquisition Count defines the number of times the Laser Range Finder Bricklet will integrate acquisitions to find a correlation record peak. With a higher count, the Bricklet can measure longer distances. With a lower count, the rate increases. The allowed values are 1-255.
If you set Enable Quick Termination to true, the distance measurement will be terminated early if a high peak was already detected. This means that a higher measurement rate can be achieved and long distances can be measured at the same time. However, the chance of false-positive distance measurements increases.
Normally the distance is calculated with a detection algorithm that uses peak value, signal strength and noise. You can however also define a fixed Threshold Value. Set this to a low value if you want to measure the distance to something that has very little reflection (e.g. glass) and set it to a high value if you want to measure the distance to something with a very high reflection (e.g. mirror). Set this to 0 to use the default algorithm. The other allowed values are 1-255.
Set the Measurement Frequency to force a fixed measurement rate. If set to 0, the Laser Range Finder Bricklet will use the optimal frequency according to the other configurations and the actual measured distance. Since the rate is not fixed in this case, the velocity measurement is not stable. For a stable velocity measurement you should set a fixed measurement frequency. The lower the frequency, the higher is the resolution of the calculated velocity. The allowed values are 10Hz-500Hz (and 0 to turn the fixed frequency off).
New in version 2.0.3 (Plugin).
laser-range-finder-bricklet
<uid> get-configuration
¶Output: |
|
---|
Returns the configuration as set by set-configuration
.
New in version 2.0.3 (Plugin).
laser-range-finder-bricklet
<uid> set-moving-average
<distance-average-length> <velocity-average-length>¶Parameters: |
|
---|---|
Output: |
|
Sets the length of a moving averaging for the distance and velocity.
Setting the length to 0 will turn the averaging completely off. With less averaging, there is more noise on the data.
laser-range-finder-bricklet
<uid> get-moving-average
¶Output: |
|
---|
Returns the length moving average as set by set-moving-average
.
laser-range-finder-bricklet
<uid> get-sensor-hardware-version
¶Output: |
|
---|
Returns the LIDAR-Lite hardware version.
The following symbols are available for this function:
For version:
New in version 2.0.3 (Plugin).
laser-range-finder-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.
laser-range-finder-bricklet
<uid> set-distance-callback-period
<period>¶Parameters: |
|
---|---|
Output: |
|
Sets the period with which the distance
callback is triggered
periodically. A value of 0 turns the callback off.
The distance
callback is only triggered if the distance value has
changed since the last triggering.
laser-range-finder-bricklet
<uid> get-distance-callback-period
¶Output: |
|
---|
Returns the period as set by set-distance-callback-period
.
laser-range-finder-bricklet
<uid> set-velocity-callback-period
<period>¶Parameters: |
|
---|---|
Output: |
|
Sets the period with which the velocity
callback is triggered
periodically. A value of 0 turns the callback off.
The velocity
callback is only triggered if the velocity value has
changed since the last triggering.
laser-range-finder-bricklet
<uid> get-velocity-callback-period
¶Output: |
|
---|
Returns the period as set by set-velocity-callback-period
.
laser-range-finder-bricklet
<uid> set-distance-callback-threshold
<option> <min> <max>¶Parameters: |
|
---|---|
Output: |
|
Sets the thresholds for the distance-reached
callback.
The following options are possible:
Option | Description |
---|---|
'x' | Callback is turned off |
'o' | Callback is triggered when the distance value is outside the min and max values |
'i' | Callback is triggered when the distance value is inside the min and max values |
'<' | Callback is triggered when the distance value is smaller than the min value (max is ignored) |
'>' | Callback is triggered when the distance value is greater than the min value (max is ignored) |
The following symbols are available for this function:
For <option>:
laser-range-finder-bricklet
<uid> get-distance-callback-threshold
¶Output: |
|
---|
Returns the threshold as set by set-distance-callback-threshold
.
The following symbols are available for this function:
For option:
laser-range-finder-bricklet
<uid> set-velocity-callback-threshold
<option> <min> <max>¶Parameters: |
|
---|---|
Output: |
|
Sets the thresholds for the velocity-reached
callback.
The following options are possible:
Option | Description |
---|---|
'x' | Callback is turned off |
'o' | Callback is triggered when the velocity is outside the min and max values |
'i' | Callback is triggered when the velocity is inside the min and max values |
'<' | Callback is triggered when the velocity is smaller than the min value (max is ignored) |
'>' | Callback is triggered when the velocity is greater than the min value (max is ignored) |
The following symbols are available for this function:
For <option>:
laser-range-finder-bricklet
<uid> get-velocity-callback-threshold
¶Output: |
|
---|
Returns the threshold as set by set-velocity-callback-threshold
.
The following symbols are available for this function:
For option:
laser-range-finder-bricklet
<uid> set-debounce-period
<debounce>¶Parameters: |
|
---|---|
Output: |
|
Sets the period with which the threshold callbacks
are triggered, if the thresholds
keep being reached.
laser-range-finder-bricklet
<uid> get-debounce-period
¶Output: |
|
---|
Returns the debounce period as set by set-debounce-period
.
Callbacks can be used to receive time critical or recurring data from the device:
tinkerforge dispatch laser-range-finder-bricklet <uid> example
The available callbacks are described below.
Note
Using callbacks for recurring events is always preferred compared to using getters. It will use less USB bandwidth and the latency will be a lot better, since there is no round trip time.
laser-range-finder-bricklet
<uid> distance
¶Output: |
|
---|
This callback is triggered periodically with the period that is set by
set-distance-callback-period
. The parameter is the distance
value of the sensor.
The distance
callback is only triggered if the distance value has changed
since the last triggering.
laser-range-finder-bricklet
<uid> velocity
¶Output: |
|
---|
This callback is triggered periodically with the period that is set by
set-velocity-callback-period
. The parameter is the velocity
value of the sensor.
The velocity
callback is only triggered if the velocity has changed since
the last triggering.
laser-range-finder-bricklet
<uid> distance-reached
¶Output: |
|
---|
This callback is triggered when the threshold as set by
set-distance-callback-threshold
is reached.
The parameter is the distance value of the sensor.
If the threshold keeps being reached, the callback is triggered periodically
with the period as set by set-debounce-period
.
laser-range-finder-bricklet
<uid> velocity-reached
¶Output: |
|
---|
This callback is triggered when the threshold as set by
set-velocity-callback-threshold
is reached.
The parameter is the velocity value of the sensor.
If the threshold keeps being reached, the callback is triggered periodically
with the period as set by set-debounce-period
.