Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 15 days 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 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-19T20:23:50.000Z (over 7 years ago)
- Last Synced: 2023-10-20T17:32:06.262Z (about 1 year ago)
- Topics: labquest, labquest2, mathematica, vernier, vernier-sensors, wolfram-language, wolframlanguage
- Language: Mathematica
- Size: 806 KB
- Stars: 1
- Watchers: 2
- 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 VernierDownload 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.