Contents
  1. 1. Changes

During each dive DiveIno saves the dive profile into a file on the SD card. The name of the file is DIVEXXXX.TXT, where the XXXX identifies the dive number.

If you open one file, its content will be similar to this:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
************
* Summary: *
************

Duration (seconds) = 1800
Maximum depth (meter) = 40.6
Minimum temperature (celsius) = 15
Oxygen percentage = 21
Dive date = 2015-10-14
Dive time = 10:45

**********
* Notes: *
**********

TestLog4.json


************
* Profile: *
************

Pressure (milliBar), Depth (meter), Temperature (celsius), Duration (seconds)
-----------------------------------------------------------------------------
1435.47,4.2,15,4
1525.89,5.1,15,8
1626.41,6.1,15,12

I think it is self explanatory. Maybe some notes would be helpful:

  • You can write whatever you want into the Notes section - two lines were reserved for that
  • The content of the Profile section is in comma-separated values (CSV) format
  • The Duration of the dive counts from the beginning of the dive

Changes

The DiveIno file format was changed from plain text to json. Please read the Migrate DiveIno files into json format post for further details!

Contents
  1. 1. Changes