File: MicroBitCompassCalibrator.h

package info (click to toggle)
firmware-microbit-micropython 1.0.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 25,448 kB
  • sloc: ansic: 83,496; cpp: 27,664; python: 2,475; asm: 274; makefile: 245; javascript: 41; sh: 25
file content (156 lines) | stat: -rw-r--r-- 6,743 bytes parent folder | download | duplicates (3)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/*
The MIT License (MIT)

Copyright (c) 2016 British Broadcasting Corporation.
This software is provided by Lancaster University by arrangement with the BBC.

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*/

#ifndef MICROBIT_COMPASS_CALIBRATOR_H
#define MICROBIT_COMPASS_CALIBRATOR_H

#include "MicroBitConfig.h"
#include "MicroBitCompass.h"
#include "MicroBitAccelerometer.h"
#include "MicroBitDisplay.h"
#include "MicroBitStorage.h"


/**
  * Class definition for an interactive compass calibration algorithm.
  *
  * The algorithm uses an accelerometer to ensure that a broad range of sample data has been gathered
  * from the compass module, then performs a least mean squares optimisation of the
  * results to determine the calibration data for the compass.
  *
  * The LED matrix display is used to provide feedback to the user on the gestures required.
  *
  * This class listens for calibration requests from the compass (on the default event model),
  * and automatically initiates a calibration sequence as necessary.
  */
class MicroBitCompassCalibrator
{
    MicroBitCompass&        compass;
    MicroBitAccelerometer&  accelerometer;
    MicroBitDisplay&        display;
    MicroBitStorage         *storage;

    public:

    /**
      * Constructor.
      *
      * Create an object capable of calibrating the compass.
      *
      * The algorithm uses an accelerometer to ensure that a broad range of sample data has been gathered
      * from the compass module, then performs a least mean squares optimisation of the
      * results to determine the calibration data for the compass.
      *
      * The LED matrix display is used to provide feedback to the user on the gestures required.
      *
      * @param compass The compass instance to calibrate.
      *
      * @param accelerometer The accelerometer to gather contextual data from.
      *
      * @param display The LED matrix to display user feedback on.
      */
    MicroBitCompassCalibrator(MicroBitCompass& _compass, MicroBitAccelerometer& _accelerometer, MicroBitDisplay& _display);

    /**
      * Constructor.
      *
      * Create an object capable of calibrating the compass.
      *
      * The algorithm uses an accelerometer to ensure that a broad range of sample data has been gathered
      * from the compass module, then performs a least mean squares optimisation of the
      * results to determine the calibration data for the compass.
      *
      * The LED matrix display is used to provide feedback to the user on the gestures required.
      *
      * @param compass The compass instance to calibrate.
      * @param accelerometer The accelerometer to gather contextual data from.
      * @param display The LED matrix to display user feedback on.
      * @param storage The object to use for storing calibration data in persistent FLASH. 
      */
    MicroBitCompassCalibrator(MicroBitCompass& _compass, MicroBitAccelerometer& _accelerometer, MicroBitDisplay& _display, MicroBitStorage &storage);

    /**
      * Performs a simple game that in parallel, calibrates the compass.
      *
      * This function is executed automatically when the user requests a compass bearing, and compass calibration is required.
      *
      * This function is, by design, synchronous and only returns once calibration is complete.
      */
    void calibrateUX(MicroBitEvent);
     /**
      * Calculates an independent X, Y, Z scale factor and centre for a given set of data points,
      * assumed to be on a bounding sphere
      *
      * @param data An array of all data points
      * @param samples The number of samples in the 'data' array.
      *
      * This algorithm should be called with no fewer than 12 points, but testing has indicated >21
      * points provides a more robust calculation.
      *
      * @return A calibration structure containing the a calculated centre point, the radius of the
      * minimum enclosing spere of points and a scaling factor for each axis that places those
      * points as close as possible to the surface of the containing sphere.
      */
     static CompassCalibration calibrate(Sample3D *data, int samples);

    private:

    /**
     * Scoring function for a hill climb algorithm.
     *
     * @param c An approximated centre point
     * @param data a collection of data points
     * @param samples the number of samples in the 'data' array
     *
     * @return The deviation between the closest and further point in the data array from the point given. 
     */
    static float measureScore(Sample3D &c, Sample3D *data, int samples);

    /*
     * Performs an interative approximation (hill descent) algorithm to determine an
     * estimated centre point of a sphere upon which the given data points reside.
     *
     * @param data an array containing sample points
     * @param samples the number of sample points in the 'data' array.
     *
     * @return the approximated centre point of the points in the 'data' array.
     */
    static Sample3D approximateCentre(Sample3D *data, int samples);

    /**
     * Calculates an independent scale factor for X,Y and Z axes that places the given data points on a bounding sphere
     *
     * @param centre A proviously calculated centre point of all data.
     * @param data An array of all data points
     * @param samples The number of samples in the 'data' array.
     *
     * @return A calibration structure containing the centre point provided, the radius of the minimum
     * enclosing spere of points and a scaling factor for each axis that places those points as close as possible
     * to the surface of the containing sphere.
     */
    static CompassCalibration spherify(Sample3D centre, Sample3D *data, int samples);
};

#endif