Repository for the PSLab App for performing experiments with the Pocket Science Lab open-hardware platform.
This repository contains the PSLab application, a cross-platform app for performing science and engineering experiments with the Pocket Science Lab (PSLab) device. PSLab is an open-source hardware platform that combines multiple laboratory instruments into a single portable device, including an oscilloscope, waveform generator, frequency counter, programmable voltage and current source, logic analyzer, and data logger. The application provides an intuitive interface for interacting with these instruments across multiple platforms. Our website is at https://pslab.io.
The PSLab app is available for Android, iOS, Windows, macOS, Linux, and Web.
- Store listings and install guides: PSLab Application documentation
- Development builds (direct downloads): Download page
Sign up for the latest updates and test new features early by joining our beta program.
- You can get a Pocket Science Lab device from the FOSSASIA Shop.
- More resellers are listed on the PSLab website.
- The PSLab chat channel is on Gitter.
- Please also join us on the PSLab Mailing List.
- Establish communication between the cross-platform application and the PSLab device.
- Implement core scientific instruments and expose PSLab hardware functionality.
- Add wireless connectivity (currently under development).
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| Feature | Description | Status |
|---|---|---|
| Home Screen | Show status and version of PSLab device | ✔️ |
| Instruments | Exposes PSLab instruments like Oscilloscope, etc | ✔️ |
| Oscilloscope | Shows variation of analog signals | ✔️ |
| Multimeter | Measures voltage, current, resistance and capacitance | ✔️ |
| Logical Analyzer | Captures and displays signals from digital system | ✔️ |
| Wave Generator | Generates arbitrary analog and digital waveforms | ✔️ |
| Power Source | Generates programmable voltage and currents | ✔️ |
| Luxmeter | Measures the ambient light intensity | ✔️ |
| Barometer | Measures the Pressure | ✔️ |
| Accelerometer | Measures the acceleration of the device | ✔️ |
| Gyrometer | Measures the rate of rotation | ✔️ |
| Compass | Measures the absolute rotation relative to earth magnetic poles | ✔️ |
| Thermometer | Measures the ambient temperature | ✔️ |
| Gas Sensor | Detects gases, including NH3, NOx, alcohol, benzene, smoke and CO2 | ✔️ |
| Robotic Arm Controller | Allows to control 4 servo motors of the robotic arm independently | ✔️ |
| OLED Display | Displays graphics, animations, GIFs, and retro games on external I²C OLED displays | ✔️ |
| Sound Meter | Measures ambient sound levels using the device microphone | ✔️ |
Supported Devices:
- PSLab v5: VendorID
04d8, ProductID00df - PSLab v6: VendorID
10c4, ProductIDea60
To use the PSLab device with Android, you need:
- A PSLab device
- A USB OTG cable
- An Android device with USB Host (OTG) support
- The PSLab Android application
Connect the PSLab device to your Android device using the OTG cable. The application will automatically detect the device and establish communication.
iOS support currently communicates with the PSLab device over Wi-Fi using an ESP-01 module. This functionality is currently under development.
These platforms communicate with the PSLab device over USB serial. Before connecting the device, install the CP210x USB-to-UART Bridge Virtual COM Port (VCP) drivers for your operating system.
Download the drivers from:
https://www.silabs.com/software-and-tools/usb-to-uart-bridge-vcp-drivers?tab=downloads
The application requests the following permissions:
| Permission | Purpose |
|---|---|
| Location | GPS logging and location-based features |
| Microphone | Audio oscilloscope functionality |
| Internet | Network connectivity |
| Storage | Reading and writing logged data |
| USB Host | Communication with PSLab hardware |
| Motion Sensors | Compass and motion-based features |
| Ambient Temperature Sensor | Device temperature measurements (optional) |
The application requests the following permissions:
| Permission | Purpose |
|---|---|
| Microphone | Audio oscilloscope functionality |
| Motion Sensors | Compass and motion-based features |
| Storage | Reading and writing logged data |
| Location | GPS logging and location-based features |
| Internet | Network connectivity |
No runtime permissions are required.
Linux: Users must install the provided
udevrules and add themselves to thedialoutgroup to access USB serial devices.
No runtime permissions are required.
- PSLab Android App Overview.
- Observing Sound Waveforms Using PSLab Device.
- Real-time Sensor Data Logging Using Pocket Science Lab.
- Generating and Observing Waveforms Using Pocket Science Lab.
This is a Cross-platform application build with flutter and rust that supports:
- Android (primary platform)
- iOS (via Wi-Fi only)
- Linux
- macOS
- Windows
- Web
Flutter & Dart
- Flutter (stable channel)
- Dart (bundled with Flutter)
Java
- Java (LTS version required for Android builds)
Rust
- Rust (stable toolchain required for Backend)
The user interface and most of the application state management are implemented in Flutter. Flutter enables the application to run on multiple platforms from a single codebase while maintaining a consistent user experience.
Why Flutter?
-
Cross-platform development for Android, iOS, Windows, macOS, Linux, and Web.
-
A rich ecosystem of UI libraries and packages.
-
High-performance rendering with a native-like user experience.
-
Hot reload for faster development and debugging.
-
Excellent integration with native code through the Foreign Function Interface (FFI), making it easy to communicate with the Rust-based serial communication backend.
For setting up the Flutter development environment refer to:
The application uses a Rust-based serial communication backend to interface with PSLab hardware. Instead of relying directly on platform-specific hardware communication dependencies, all low-level serial communication is handled by the Rust backend.
Why Rust?
- Near bare-metal performance with minimal runtime overhead.
- Memory safety without requiring a garbage collector.
- Reliable and efficient handling of high-frequency serial data streams.
- Cross-platform support through a shared native backend for Flutter.
- Better maintainability for performance-critical hardware communication code.
For setting up the Rust development environment and building the backend, refer to:
git clone https://github.com/fossasia/pslab-app.git
cd pslab-appflutter pub getNo additional setup is required.
Install the CocoaPods dependencies:
cd ios
pod install
cd ..No additional setup is required. If Windows does not automatically detect your PSLab device, install the appropriate USB drivers.
Install the provided udev rules and grant your user access to serial devices:
sudo cp linux/99-pslab.rules /etc/udev/rules.d/
sudo udevadm control --reload-rules
sudo udevadm trigger
sudo usermod -a -G dialout $USERLog out and log back in for the group changes to take effect.
The following commands use the CLI. List available devices:
flutter devicesRun the application:
flutter runUse for development and debugging:
flutter build apk --debugUse for performance testing and local release-like builds:
flutter build apk --profileNote: Release builds are generated automatically through CI stored in the app branch.
Run all tests:
flutter testRun integration tests:
flutter test integration_test/Common Issues:
-
USB permissions on Linux:
- Ensure udev rules are installed:
ls -la /etc/udev/rules.d/99-pslab.rules - Check user is in dialout group:
groups $USER
- Ensure udev rules are installed:
-
Flutter version mismatch:
flutter channel stable flutter upgrade flutter pub get
-
iOS build issues:
cd ios pod deintegrate pod install cd .. flutter clean flutter pub get
-
Android build issues:
- Ensure an LTS Java version is installed: java -version
- Clean build:
flutter clean && flutter pub get
-
Git dependency issues:
flutter pub deps flutter pub get
Follow the steps below to confirm that your local development environment is correctly configured.
flutter doctorResolve any critical issues reported by the command.
flutter pub get
flutter testflutter runRun the app on a connected physical device, emulator, or desktop target.
We use Weblate for managing translations.
If you want to help translate the app into your language, please visit the PSLab App project on Weblate.
The app uses the standard Flutter flutter_localizations package.
- Location: Translation files are stored in
lib/l10n/in.arb(Application Resource Bundle) format. - Template: The source of truth is
lib/l10n/app_en.arb. - Contribution: While we prefer translations submitted via Weblate to avoid merge conflicts, you can also manually edit the
.arbfiles and submit a Pull Request.
Please follow these best practices to make the review process easier for both contributors and reviewers. This allows us to focus on code quality.
-
Follow the pull request template whenever you create a pull request.
-
Always reference the related issue number at the top of the pull request description.
-
If an issue does not already exist, create one before opening the pull request and link it in the description.
-
Include screenshots or a short video demonstrating your changes whenever applicable, especially for UI-related changes.
-
Always format your Dart code before committing:
dart format . -
Ensure your code builds successfully and is free of warnings before pushing. Pull requests with build issues or warnings may fail the CI checks.
-
Enable GitHub Copilot Review or ChatGPT Codex Review in your GitHub account. The AI reviewer may provide useful suggestions on your pull request. Address the relevant comments.
We have the following branches
- main All development goes on in this branch. If you're making a contribution, you are supposed to make a pull request to Main. Make sure it passes a build checks.
- development-legacy Contains the legacy native Android app code.
- app Contains automatically generated build artifacts (APK, EXE, IPA, DMG, DEB, etc.) for testing. Anyone can download and install these artifacts directly without needing to build the project locally.
This project is currently licensed under the Apache License 2.0. A copy of LICENSE is to be present along with the source code. To obtain the software under a different license, please contact FOSSASIA.

























