Fix example path to x_plane_data include directory.
[erlang-x-plane-data.git] / README.md
index b417370..91089e6 100644 (file)
--- a/README.md
+++ b/README.md
@@ -55,12 +55,14 @@ interpreting the values have been made:
 #### Named
 
 Here we identify what each of the numbered groups mean in a given X-Plane
-version. Right now only X-Plane 10 is supported and I only identified 3 groups
-so far:
+version. Right now only X-Plane 10 (packet index 64) is supported and I only
+identified 3 groups so far:
 
-- index: `3` , name: `speeds`
-- index: `17`, name: `pitch_roll_heading`
-- index: `20`, name: `lat_lon_alt`
+| packet index | group index | group name           |
+|--------------|-------------|----------------------|
+| 64           | 3           | `speeds`             |
+| 64           | 17          | `pitch_roll_heading` |
+| 64           | 20          | `lat_lon_alt`        |
 
 Unidentified groups (with index other than what is listed above) will be
 absent from the list of named groups (think of `x_plane_data_named:of_raw/1` as
@@ -73,9 +75,9 @@ a filter), so you'll have to access their raw version, if needed.
 
 ##### Access
 ```erlang
--include_lib("x_plane_data_group_lat_lon_alt.hrl").
--include_lib("x_plane_data_group_pitch_roll_heading.hrl").
--include_lib("x_plane_data_group_speeds.hrl").
+-include_lib("x_plane_data/include/x_plane_data_group_lat_lon_alt.hrl").
+-include_lib("x_plane_data/include/x_plane_data_group_pitch_roll_heading.hrl").
+-include_lib("x_plane_data/include/x_plane_data_group_speeds.hrl").
 
 ...
 
This page took 0.018017 seconds and 4 git commands to generate.