Pocket Science Lab by FOSSASIA
Project description
PSLab Python Library
The Python library for the Pocket Science Lab from FOSSASIA.
This repository hosts the Python library for communicating with the Pocket Science Lab open hardware platform (PSLab). Using this library you can communicate with the PSLab using simple Python code. The Python library is also used by the PSLab GUI as a backend component.
The goal of PSLab is to create an Open Source hardware device (open on all layers) and software applications that can be used for experiments by teachers, students and scientists. Our tiny pocket lab provides an array of instruments for doing science and engineering experiments. It provides functions of numerous measurement tools including an oscilloscope, a waveform generator, a logic analyzer, a programmable voltage and current source, and even a component to control robots with up to four servos.
For more information see https://pslab.io.
Buy
- You can get a Pocket Science Lab device from the FOSSASIA Shop.
- More resellers are listed on the PSLab website.
Installation
pslab-python can be installed from PyPI:
$ pip install pslab
Note: Linux users must additionally install a udev rules file for pslab-python to be able to communicate with the PSLab device. The file 99-pslab.rules should be copied to /etc/udev/rules.d/.
Note: If you are only interested in using PSLab as an acquisition device without a display/GUI, only pslab-python needs to be installed. If you would like a GUI, install the pslab-desktop app and follow the instructions of the Readme in that repo.
Validate installation
- Plug in the PSLab device and check that both the LEDs light up.
- The following piece of code should run without errors:
from pslab import ScienceLab
psl = ScienceLab()
capacitance = psl.multimeter.measure_capacitance()
print(capacitance)
Communication
- If you encounter any bugs, please file them in our issue tracker.
- You can chat with the PSLab developers on Gitter.
- There is also a mailing list.
Wherever we interact, we strive to follow the FOSSASIA Code of Conduct.
Contributing
See CONTRIBUTING.md to get started.
License
This library is free and open source software licensed under the GPL v3. The copyright is owned by FOSSASIA.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.