https://github.com/arnoudbuzing/labquest2
Wolfram Language paclet to interface with the LabQuest 2 device from Vernier
https://github.com/arnoudbuzing/labquest2
labquest labquest2 mathematica vernier vernier-sensors wolfram-language wolframlanguage
Last synced: 4 months ago
JSON representation
Wolfram Language paclet to interface with the LabQuest 2 device from Vernier
- Host: GitHub
- URL: https://github.com/arnoudbuzing/labquest2
- Owner: arnoudbuzing
- License: other
- Created: 2017-09-19T15:47:35.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-19T20:23:50.000Z (over 8 years ago)
- Last Synced: 2025-08-04T20:29:42.215Z (10 months ago)
- Topics: labquest, labquest2, mathematica, vernier, vernier-sensors, wolfram-language, wolframlanguage
- Language: Mathematica
- Size: 806 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING.md
Awesome Lists containing this project
README
# labquest2
Wolfram Language paclet to interface with the LabQuest 2 device from Vernier
Download the latest package from here:
https://github.com/arnoudbuzing/labquest2/releases
Install the package (change x.y.z to the appropriate numbers):
PacletInstall["LabQuest-x.y.z.paclet"]
Start the notebook interface, and load the package:
Needs["LabQuest2`"]
Connect to your LabQuest 2 (change `` numerical wifi ip address found under 'Connections' from the 'Home' screen):
labquest2 = InstallLabQuest2[""]
Example:
labquest2 = InstallLabQuest2["192.168.1.68"]
This will return a LabQuest2Object expression that you can use to control the device:
In[1]:= labquest2["Properties"]
Out[1]= {"Status", "Start", "Stop", "Sets", "Set"}
The `Status` property will return information about the current status of the device:
status = labquest2["Status"]
The `Sets` property will return information about all the data collection runs:
sets = labquest2["Sets"]
You can collect the recorded data for a specific set, e.g.:
data = labquest2[{"Set", "279"}]
See the `test.nb` notebook for detailed examples.