Home

Awesome

PSLab Android App

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

Build Codacy Badge Mailing List Minimum API Level Maximum API Level GitHub repo size Gitter Twitter Follow

This repository holds the Android App for performing experiments with PSLab. PSLab is a tiny pocket science lab that provides an array of equipment for doing science and engineering experiments. It can function like an oscilloscope, waveform generator, frequency counter, programmable voltage and current source and also as a data logger. Our website is at https://pslab.io

<a href="https://play.google.com/store/apps/details?id=io.pslab"><img alt="Get it on Google Play" height="80" src="/docs/images/playstore_badge.png"></a> <a href="https://f-droid.org/app/io.pslab"><img alt="Get it on F-Droid" height="80" src="/docs/images/fdroid_badge.png"></a>

Buy

Communication

Roadmap

Screenshots

<table> <tr> <td><img src="/docs/images/view_device_not_found.png"></td> <td><img src="/docs/images/view_home_screen.png"></td> <td><img src="/docs/images/view_instrument_panel.png"></td> <td><img src="/docs/images/view_about_us.png"></td> </tr> </table> <table> <tr> <td><img src="/docs/images/instrument_oscilloscope_guide.png"></td> <td><img src="/docs/images/instrument_logic_analyzer_guide.png"></td> </tr> </table> <table> <tr> <td><img src="/docs/images/view_pin_layout_front.png"></td> <td><img src="/docs/images/view_pin_layout_back.png"></td> <td><img src="/docs/images/view_side_navigation_drawer.png"></td> <td><img src="/docs/images/instrument_luxmeter_guide.png"></td> </tr> </table> <table> <tr> <td><img src="/docs/images/instrument_oscilloscope_channel_view.png"></td> <td><img src="/docs/images/instrument_oscilloscope_audiojack_view.png"></td> </tr> </table> <table> <tr> <td><img src="/docs/images/instrument_wave_generator_analog.png"></td> <td><img src="/docs/images/instrument_wave_generator_digital.png"></td> <td><img src="/docs/images/instrument_power_source_view.png"></td> <td><img src="/docs/images/instrument_multi_meter_view.png"></td> </tr> </table> <table> <tr> <td><img src="/docs/images/instrument_barometer_view.png"></td> <td><img src="/docs/images/view_log_map_location.png"></td> <td><img src="/docs/images/view_data_logger.png"></td> <td><img src="/docs/images/view_create_config_file.png"></td> </tr> </table> <table> <tr> <td><img src="/docs/images/instrument_accelerometer_view.png" width = "500"></td> <td><img src="/docs/images/instrument_gyro_view.png" width = "500"></td> <td><img src="/docs/images/instrument_compass_view.png" width = "500"></td> <td><img src="/docs/images/instrument_thermo_view.png" width = "500"></td> </tr> <tr> <td><img src="/docs/images/instrument_sensors_view.png" width = "500"></td> <td><img src="/docs/images/instrument_gas_sensor_view.png" width = "500"></td> <td><img src="/docs/images/instrument_dust_sensor_view.png" width = "500"></td> </tr> </table> <table> <tr> <td><img src="/docs/images/instrument_robotic_arm_controller_view.png" width = "500"/></td> <td><img src="/docs/images/instrument_logical_analyzer_view.png" width = "500"/></td> </tr> </table>

Video Demo

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:

How to set up the Android app in your development environment

Application Flavors

There are 2 flavors (build variants) of PSLab Android application.

  1. Play Store Flavor

  1. Fdroid Flavors

Development Setup

Before you begin, you should already have the Android Studio SDK downloaded and set up correctly. You can find a guide on how to do this here: Setting up Android Studio

Setting up the Android Project

For setting up the PSLab Android project you may follow any of the two methods listed below, that is, you may download the repository zip file or you may directly clone the repository to Android Studio.

By downloading the zip file

  1. Download the pslab-android project source. You can do this either by forking and cloning the repository (recommended if you plan on pushing changes) or by downloading it as a ZIP file and extracting it.

  2. Open Android Studio, you will see a Welcome to Android window. Under Quick Start, select _Import Project (Eclipse ADT, Gradle, etc.)To debug over Wi-Fi follow the steps given in this Blog.

By direct cloning

  1. Open Android Studio, you will see a Welcome to Android window. Under Quick Start, select "check out project from version control".
  2. Select git from the drop down menu that appeared.
  3. Go to the repository and click clone or download button.
  4. From the dropdown that appeared, copy the link.
  5. Paste the URL that you copied and press clone.
  6. Android studio should now begin building the project with gradle.
  7. Once this process is complete and Android Studio opens, check the Console for any build errors.
  1. Once all build errors have been resolved, you should be all set to build the app and test it.
  2. To Build the app, go to Build>Make Project (or alternatively press the Make Project icon in the toolbar).
  3. If the app was built successfully, you can test it by running it on either a real device or an emulated one by going to Run>Run 'app' or pressing the Run icon in the toolbar.

If you want build apk only, go to Build>Build apk and apk would be build and directory where apk is generated would be prompted by Android Studio.

You can't debug the usual way as PSLab device is connected to micro-USB port through OTG cable. So Android Device is not connected to PC through USB cable.

To debug over Wi-Fi follow the steps given in this Blog.

Permissions Required

  1. Record_Audio : It is required for oscilloscope to accept inputs from the phone inbuilt microphone. You can find its implementation in AudioJack.java.
  2. Access_Fine_Location and Internet : It is required for use in lux meter and compass to get the coordinates for tagging the data on the map. You can find its implementation in GPSLogger.java.
  3. Write_External_Storage : It is required for storing log files from instruments that can be transferred out for future analysis.
  4. Read_External_Storage : While writing logs in the storage, CSVLogger.java first checks whether there is any CSVLogger directory exist or not and that require this read permission.

Setup to use PSLab with Android App

To use PSLab device with Android, you simply need an OTG cable, an Android Device with USB Host feature enabled ( most modern phones have OTG support ) and PSLab Android App. Connect PSLab device to Android Phone via OTG cable. Rest is handled by App itself.

Contributions Best Practices

Code practices

Please help us follow the best practice to make it easy for the reviewer as well as the contributor. We want to focus on the code quality more than on managing pull request ethics.

How to git squash?

As a tip for new developers those who struggle with squashing commits into one, multiple commits may appear in your pull request mostly due to following reasons.

Despite any reason, follow the steps given below to squash all commits into one adhering to our best practices.

$ git remote add upstream https://github.com/fossasia/pslab-android.git

$ git checkout <branch-name>

$ git reset --soft upstream/development

$ git add <file paths or "." to add everything>

$ git commit -m "tag: commit message"

$ git push -f origin <branch-name>

Branch Policy

We have the following branches

Code style

Please try to follow the mentioned guidelines while writing and submitting your code as it makes easier for the reviewer and other developers to understand.

Developers

Maintainers

The project is maintained by

Alumni

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.