diff --git a/docs-mini/README.digitalfilters b/docs-mini/README.digitalfilters
new file mode 100644
index 000000000..c45ed1ccb
--- /dev/null
+++ b/docs-mini/README.digitalfilters
@@ -0,0 +1,51 @@
+Four different types of digital low-pass filters can be configured inside the
+autopilot configuration file. The types of filter are:
+
+* Exponential
+* Double exponential
+* Moving average
+* Noise spike filter
+
+Example:
+
+
+ pressure-rate-filter
+ false
+ double-exponential
+ /autopilot/internal/pressure-rate
+
+ 0.1
+
+
+This will filter the pressure-rate property. The output will be to a new
+property called filtered-pressure-rate. You can select any numerical property
+from the property tree. The input property will not be affected by the filter,
+it will stay the same as it would if no filter was configured.
+
+ The name of the filter. Give it a sensible name!
+
+ If this tag is set to true debugging info will be printed on the
+console.
+
+ The type of filter. This can be exponential, double-exponential,
+moving-average or noise-spike.
+
+ The input property to be filtered. This should of course be a
+numerical property, filtering a text string or a boolean value does not make
+sense.
+
+