SerialDataLogger Demo

SerialDataLogger Demo

  • Latest Version
  • Convenient Measurement Apps

Demo version of SDL to test connection between Android and Arduino device

About this app

This is the demo version of the SerialDataLogger app. Its purpose is for the user to test the connection between an Android and Arduino before purchasing the full version. This app takes incoming data, via USB or Bluetooth, and separates it into different labels and displays them. The full version has features like plotting, logging, and signal processing.

When sending data from the Arduino to the serial output, it should be in the following form:

Serial.print("a" + String(micros()) + ";" + String(data1) + ";" + String(data2) + "a");

It should look like this whether using USB or Bluetooth. There is no built in limit for how many data values can be sent at once. The first value should be the time in 'micros', but this is mainly for the full version. Further instructions can be found within the app.