This Android app displays and stores the logged data of Geiger counters with the Radpro Firmware.
- Load logged data from a Geiger counter.
- Plot logged data.
- Store logged data locally on the Android device.
- Combine data from multiple logs of the same device and display them in one chart to get a longer radiation profile.
- Adaptive moving average filter with a variable filter window, allowing the radiation plot to be smoothed.
- Export
.csv
files of logged data. - Import
.csv
files (the file must follow the CSV format mentioned below). - The app also supports dark mode, which follows the current system setting.
The time on the Geiger counter must be set accurately according to UTC. It's important to first set the time zone, and only then set the date and time.
The app will display a warning if there is a time mismatch greater than 2 minutes between the Geiger counter and the Android device. It can automatically synchronize the Geiger counter’s time with the Android device. However, the time zone must be set manually on the Geiger counter, based on the time zone displayed in the app.
Important: Don’t forget to account for Daylight Saving Time (DST) when setting the time zone.
For example, in Vienna:
- Winter time is UTC+01:00
- Summer time (DST) is UTC+02:00
The first line contains device information in JSON format, the second line contains the column headers. For example:
{"conversionValue":153.8,"deviceId":1747642399,"deviceType":"Bosean FS-5000"}
time,radiation[CPS]
1742588887,0.7
1742588887,0.7
Currently, only the APK file is provided under the Releases section. It can be installed on any Android device running Android “Oreo” 8.0 (API 26) or above. In the future, it may be published on the Google Play Store, but for now, it is a beta version.
- Add the option to view the chart on a logarithmic scale.
- Expand functionality with additional features, such as live data logging with GPS tracking.
The app uses the following libraries:
- usb-serial-for-android – For the serial USB connection.
- MPAndroidChart – For plotting the data.
- Room – For storing downloaded data logs persistently.
- Gson – For serializing the device information to store in the CSV file.
Many thanks also to Gissio, who developed the amazing Radpro Firmware that made all of this possible.
The peak in the diagram was produced using a check source, to verify functionality.
I thought it would be very useful to access the logged data anywhere without needing a computer. Since the only way to view the data was the GeigerLog software, I wanted a simpler solution.
Please note: I'm not a professional app developer. While I studied Java and JavaFX for desktop applications at university, this is my first Android app. As a result, the code might not follow best design practices and could potentially have some performance issues.