This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| LJ - 09.60 - blink_COMM_STATUS_LEDs.lua | |
| This script shows how to control an LabJack T4 COMM STATUS LED using Lua. | |
| Components | |
| ---------- | |
| - LabJack T4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| LJ - 09.70 - voltage_follower_verbose.lua | |
| This script shows how to control an LED with FIO5 with a Lua script. | |
| Components | |
| ---------- | |
| - LabJack T4 | |
| - Voltmeter/Multimeter |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| LJ - 09.80 - counter_no_debouncing.lua | |
| This program demonstrates how to use digital lines as simple counters. | |
| This script is a simplified version of the one at | |
| https://labjack.com/support/software/examples/lua-scripting/counter-examples/23-counters | |
| This script demonstrates how to create a simple counter on FIO4. | |
| Components | |
| ---------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| LJ - 09.90 - counter_with_debouncing.lua | |
| This program demonstrates how to configure counters, with debounce, using DIO | |
| channels. The debounce time for each counter will be between debounceInt and | |
| 2*debounceInt milliseconds. The debounce time is determined by the duration | |
| of the interval and when in the interval the first input is received. | |
| Original script: | |
| https://labjack.com/support/software/examples/lua-scripting/counter-examples/23-counters-debounce |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| LJ - 09.100 - convert_AIN_with_function.lua | |
| This program demonstrates how to use a formula to scale the voltage | |
| measured on AIN0. | |
| Components | |
| ---------- | |
| - LabJack T4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| LJ - 10.30 - AIN0_read.py | |
| This script shows how to read voltage from AIN0. | |
| Components | |
| ---------- | |
| - LabJack T4 | |
| - Potentiometer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| LJ - 10.40 - LJ - 10.40 - DAC0_write.py | |
| This script shows how to write voltage to DAC0. | |
| Components | |
| ---------- | |
| - LabJack T4 | |
| - Voltmeter/Multimeter |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| LJ - 10.50 - FIO4_blink.py | |
| This script shows how to control an LED with FIO4. | |
| Components | |
| ---------- | |
| - LabJack T4 | |
| - LED |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| LJ - 10.60 - lua_script_host_control.py | |
| This script shows how to control an LED with FIO4 by deploying a Lua scripts | |
| to the LabJack. This script also demonstrates communication between this Python | |
| script and the on-board Lua scrip via user RAM. | |
| Components | |
| ---------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| LJ - 10.70 - simple_logging.py | |
| This script shows how to control an LED with FIO4 by deploying a Lua scripts | |
| to the LabJack. This script also demonstrates communication between this Python | |
| script and the on-board Lua scrip via user RAM. | |
| Components | |
| ---------- |