PSLab App

August 3, 2026 · View on GitHub

Repository for the PSLab App for performing experiments with the Pocket Science Lab open-hardware platform.

Build Mailing List GitHub repo size Gitter Twitter Follow Translation status

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.

Download

The PSLab app is available for Android, iOS, Windows, macOS, Linux, and Web.

Sign up for the latest updates and test new features early by joining our beta program.

Buy

Communication

Roadmap

  • 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).

Screenshots

Features

FeatureDescriptionStatus
Home ScreenShow status and version of PSLab device:heavy_check_mark:
InstrumentsExposes PSLab instruments like Oscilloscope, etc:heavy_check_mark:
OscilloscopeShows variation of analog signals:heavy_check_mark:
MultimeterMeasures voltage, current, resistance and capacitance:heavy_check_mark:
Logical AnalyzerCaptures and displays signals from digital system:heavy_check_mark:
Wave GeneratorGenerates arbitrary analog and digital waveforms:heavy_check_mark:
Power SourceGenerates programmable voltage and currents:heavy_check_mark:
LuxmeterMeasures the ambient light intensity:heavy_check_mark:
BarometerMeasures the Pressure:heavy_check_mark:
AccelerometerMeasures the acceleration of the device:heavy_check_mark:
GyrometerMeasures the rate of rotation:heavy_check_mark:
CompassMeasures the absolute rotation relative to earth magnetic poles:heavy_check_mark:
ThermometerMeasures the ambient temperature:heavy_check_mark:
Gas SensorDetects gases, including NH3, NOx, alcohol, benzene, smoke and CO2:heavy_check_mark:
Robotic Arm ControllerAllows to control 4 servo motors of the robotic arm independently:heavy_check_mark:
OLED DisplayDisplays graphics, animations, GIFs, and retro games on external I²C OLED displays:heavy_check_mark:
Sound MeterMeasures ambient sound levels using the device microphone:heavy_check_mark:

Supported Devices:

  • PSLab v5: VendorID 04d8, ProductID 00df
  • PSLab v6: VendorID 10c4, ProductID ea60

How to Use

Android

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

iOS support currently communicates with the PSLab device over Wi-Fi using an ESP-01 module. This functionality is currently under development.

Windows, macOS, Linux, and Web

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

Permissions

Android

The application requests the following permissions:

PermissionPurpose
LocationGPS logging and location-based features
MicrophoneAudio oscilloscope functionality
InternetNetwork connectivity
StorageReading and writing logged data
USB HostCommunication with PSLab hardware
Motion SensorsCompass and motion-based features
Ambient Temperature SensorDevice temperature measurements (optional)

iOS

The application requests the following permissions:

PermissionPurpose
MicrophoneAudio oscilloscope functionality
Motion SensorsCompass and motion-based features
StorageReading and writing logged data
LocationGPS logging and location-based features
InternetNetwork connectivity

Desktop (Windows, macOS, Linux)

No runtime permissions are required.

Linux: Users must install the provided udev rules and add themselves to the dialout group to access USB serial devices.

Web

No runtime permissions are required.

Video Demo

Development Environment Setup

Project Overview

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

Required Software

Flutter & Dart

  • Flutter (stable channel)
  • Dart (bundled with Flutter)

Java

  • Java (LTS version required for Android builds)

Rust

  • Rust (stable toolchain required for Backend)

Flutter

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:

  • docs/flutter.md

Rust

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:

Project Setup

1. Clone the Repository

git clone https://github.com/fossasia/pslab-app.git
cd pslab-app

2. Install Dependencies

flutter pub get

3. Platform-Specific Setup for Testing locally

Android

No additional setup is required.

iOS (macOS only)

Install the CocoaPods dependencies:

cd ios
pod install
cd ..

Windows

No additional setup is required. If Windows does not automatically detect your PSLab device, install the appropriate USB drivers.

Linux

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 $USER

Log out and log back in for the group changes to take effect.

Running the Application

Run the App

The following commands use the CLI. List available devices:

flutter devices

Run the application:

flutter run

Build

Debug

Use for development and debugging:

flutter build apk --debug

Profile

Use for performance testing and local release-like builds:

flutter build apk --profile

Note: Release builds are generated automatically through CI stored in the app branch.

Testing

Run all tests:

flutter test

Run integration tests:

flutter test integration_test/

Troubleshooting

Common Issues:

  1. 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
  2. Flutter version mismatch:

    flutter channel stable
    flutter upgrade
    flutter pub get
    
  3. iOS build issues:

    cd ios
    pod deintegrate
    pod install
    cd ..
    flutter clean
    flutter pub get
    
  4. Android build issues:

    • Ensure an LTS Java version is installed: java -version
    • Clean build: flutter clean && flutter pub get
  5. Git dependency issues:

    flutter pub deps
    flutter pub get
    

Verify Setup

Follow the steps below to confirm that your local development environment is correctly configured.

1. Check Flutter installation

flutter doctor

Resolve any critical issues reported by the command.

2. Install dependencies and run tests

flutter pub get
flutter test

3. Run the application

flutter run

Run the app on a connected physical device, emulator, or desktop target.

Translations

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.

Technical Details

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 .arb files and submit a Pull Request.

Contributions Best Practices

Code Practices

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.

Branch Policy

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.

License

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.