In this video lesson we add a low pass filter to our calibration and digital compass program. This allows more precise calibration, and removes the jitter from the digital compass display. We continue to use the QMC5883L 3-Axis Magnetometer, which is on our GY-87 IMU module. We are using the following schematic for our project:

We collect the data using the GY-87 connected to an Arduino. Below is the simple program which takes the magnetometer data and sends it to the serial port.
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 | #include <Adafruit_MPU6050.h> #include <Adafruit_Sensor.h> #include <Wire.h> #include <QMC5883LCompass.h> int x,y,z; Adafruit_MPU6050 mpu; QMC5883LCompass compass; void setup() { Serial.begin(115200); mpu.begin(); mpu.setI2CBypass(true); compass.init(); } void loop() { compass.read(); x = compass.getX(); y = compass.getY(); z = compass.getZ(); Serial.print(x); Serial.print(','); Serial.print(y); Serial.print(','); Serial.println(z); delay(100); } |
The code for the Python side to do the calibration and display a Digital Compass is:
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 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | import serial import numpy as np from PyQt5 import QtWidgets, QtCore, QtGui import pyqtgraph as pg import math serialPort = 'COM8' baudRate =115200 to =.1 ser =serial.Serial(serialPort, baudRate, timeout=to) maxPoints = 2000 xRaw = np.empty(0) yRaw = np.empty(0) zRaw = np.empty(0) xCal = np.empty(0) yCal = np.empty(0) zCal = np.empty(0) x=0 y=0 z=0 calibrated = False offsets = np.zeros(3) scales = np.ones(3) app = QtWidgets.QApplication([]) mainWindow = QtWidgets.QWidget() mainWindow.setWindowTitle("Magnetometer Calibratioin") mainLayout =QtWidgets.QVBoxLayout() mainWindow.setLayout(mainLayout) statusLabel = QtWidgets.QLabel("Program Running: Not Calibrated") statusLabel.setAlignment(QtCore.Qt.AlignCenter) statusLabel.setStyleSheet("color: green; font-weight: bold; font-size: 20px;") mainLayout.addWidget(statusLabel) minMaxLabel=QtWidgets.QLabel("Min/Max: N/A") minMaxLabel.setAlignment(QtCore.Qt.AlignCenter) minMaxLabel.setStyleSheet("color: green; font-weight: bold; font-size: 16px;") mainLayout.addWidget(minMaxLabel) calibrateButton = QtWidgets.QPushButton("Start Calibration") calibrateButton.setCheckable(True) mainLayout.addWidget(calibrateButton) plotLayout =QtWidgets.QGridLayout() mainLayout.addLayout(plotLayout) xyPlot = pg.PlotWidget(title="XY Plane") yzPlot = pg.PlotWidget(title="YZ Plane") xzPlot = pg.PlotWidget(title="XZ Plane") for plot in [xyPlot, yzPlot, xzPlot]: plot.setAspectLocked(True) plot.showGrid(x=True, y=True) plot.setMinimumSize(300,300) plotLayout.addWidget(xyPlot, 0,0) plotLayout.addWidget(yzPlot, 0,1) plotLayout.addWidget(xzPlot, 1,0) xyScatter = pg.ScatterPlotItem(size=5) yzScatter = pg.ScatterPlotItem(size=5) xzScatter = pg.ScatterPlotItem(size=5) xyPlot.addItem(xyScatter) yzPlot.addItem(yzScatter) xzPlot.addItem(xzScatter) headingPlot = pg.PlotWidget(title="Compass Heading") headingPlot.setAspectLocked(True) headingPlot.showGrid(x=True, y=True) headingPlot.setMinimumSize(300,300) headingPlot.hideAxis('left') headingPlot.hideAxis('bottom') plotLayout.addWidget(headingPlot,1,1) compassCircle=pg.EllipseROI([-1.5,-1.5],[3.,3.],pen=pg.mkPen('b',width=4),movable=False, resizable=False) headingPlot.addItem(compassCircle) compassCircle.removeHandle(0) compassCircle.removeHandle(0) compassCircle.setZValue(0) arrowShaft=pg.PlotCurveItem( x=[0,0],y=[0,1.5],pen=pg.mkPen('r',width=4)) headingPlot.addItem(arrowShaft) dot=pg.ScatterPlotItem(pos=[(0,1.5)],width=4,size=10,pen=pg.mkPen('y'),brush=pg.mkBrush('y')) dot.setZValue(1) headingPlot.addItem(dot) for angle, label in zip([0,90,180,270],['E','N','W','S']): rad = angle/360*2*math.pi xPos = np.cos(rad)*1.8 yPos = np.sin(rad)*1.8 text=pg.TextItem(label, anchor = (.5,.5), color='g') font=QtGui.QFont() font.setBold(True) font.setPointSize(12) text.setFont(font) text.setPos(xPos,yPos) headingPlot.addItem(text) liveHeading = pg.TextItem("Heading: 0.0\u00B0",anchor= (.5,.5),color='w') liveHeading.setFont(font) liveHeading.setPos(0,-2.2) liveHeading.setZValue(1) headingPlot.addItem(liveHeading) def toggleCalibration(): global calibrated, xRaw, yRaw, zRaw, xCal, yCal, zCal, offsets, scales if calibrateButton.isChecked(): calibrateButton.setText("Stop Calibration") statusLabel.setText("Mode: Calibration") statusLabel.setStyleSheet("color: red; font-weight: bold; font-size: 20px;") minMaxLabel.setText("Min/Max: collecting . . .") minMaxLabel.setStyleSheet("color: red; font-weight: bold; font-size: 16px;") calibrated = False xRaw = np.empty(0) yRaw = np.empty(0) zRaw = np.empty(0) if not calibrateButton.isChecked(): calibrateButton.setText("Start Calibration") statusLabel.setText("Mode: Calibrated") statusLabel.setStyleSheet("color: green; font-weight: bold; font-size: 20px;") rawData = np.column_stack((xRaw,yRaw,zRaw)) minVals = np.min(rawData, axis=0) maxVals = np.max(rawData, axis=0) offsets = (maxVals + minVals)/2 scales = 2.0/(maxVals-minVals) minMaxLabel.setStyleSheet("color: green; font-weight: bold; font-size: 16px;") minMaxLabel.setText("Min(x,y,z: "+str(minVals.round(2))+" Max(x,y,z): " +str(maxVals.round(2))+" Offsets(x,y,z): "+str(offsets.round(2)) +"Scales(x,y,z): "+str(scales.round(5))) print("Calibration Completed.") print("Offsets: ", offsets) print("Scales: ", scales) xCal = np.empty(0) yCal = np.empty(0) zCal = np.empty(0) calibrated = True calibrateButton.clicked.connect(toggleCalibration) def updatePlot(): global xRaw, yRaw, zRaw, xCal, yCal, zCal, x, y ,z if ser.in_waiting > 0: try: line= ser.readline().decode('utf-8').strip() values = line.split(',') if len(values)==3: x = x*.75 + float(values[0])*.25 y = y*.75 + float(values[1])*.25 z = z*.75 + float(values[2])*.25 if not calibrated: xRaw =np.append(xRaw, x)[-maxPoints:] yRaw =np.append(yRaw, y)[-maxPoints:] zRaw =np.append(zRaw, z)[-maxPoints:] xyScatter.setData(x=xRaw, y=yRaw, brush=pg.mkBrush(0,0,255,255)) yzScatter.setData(x=yRaw, y=zRaw, brush=pg.mkBrush(0,255,0,255)) xzScatter.setData(x=xRaw, y=zRaw, brush=pg.mkBrush(255,0,0,255)) if len(xRaw)>10: minVals = np.min(np.column_stack((xRaw,yRaw,zRaw)),axis=0) maxVals = np.max(np.column_stack((xRaw,yRaw,zRaw)),axis=0) minMaxLabel.setStyleSheet("color: red; font-weight: bold; font-size: 16px;") minMaxLabel.setText("Min(x,y,z: "+str(minVals.round(2))+" Max(x,y,z): " +str(maxVals.round(2))) if calibrated: xC= (x - offsets[0])*scales[0] yC= (y - offsets[1])*scales[1] zC= (z - offsets[2])*scales[2] xCal = np.append(xCal, xC)[-maxPoints:] yCal = np.append(yCal, yC)[-maxPoints:] zCal = np.append(zCal, zC)[-maxPoints:] xyScatter.setData(x=xCal, y=yCal, brush=pg.mkBrush(0,0,255,120)) yzScatter.setData(x=yCal, y=zCal, brush=pg.mkBrush(0,255,0,120)) xzScatter.setData(x=xCal, y=zCal, brush=pg.mkBrush(255,0,0,120)) headRad= math.atan2(yC,xC) headDeg=(headRad*360/2/math.pi)%360 compassRad= -headRad+ math.pi/2 compassDeg = (-headDeg + 90)%360 xDot=1.5*math.cos(compassRad) yDot=1.5*math.sin(compassRad) dot.setData(pos=([(xDot,yDot)])) arrowShaft.setData(x=[0,xDot],y=[0,yDot]) liveHeading.setText("Heading: "+str(int(headDeg))+"\u00B0") except Exception as e: print("Parse Error: ", e) plotTimer =QtCore.QTimer() plotTimer.timeout.connect(updatePlot) plotTimer.start(50) mainWindow.show() try: app.exec_() finally: ser.close() |