-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathvl53l1x-st-api.ino
177 lines (144 loc) · 6.02 KB
/
vl53l1x-st-api.ino
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
/*******************************************************************************
This sketch file is derived from an example program
(Projects\Multi\Examples\VL53L1X\SimpleRangingExamples\Src\main.c) in the
X-CUBE-53L1A1 Long Distance Ranging sensor software expansion for STM32Cube
from ST, available here:
http://www.st.com/content/st_com/en/products/ecosystems/stm32-open-development-environment/stm32cube-expansion-software/stm32-ode-sense-sw/x-cube-53l1a1.html
The rest of the files in this sketch are from the STSW-IMG007 VL53L1X API from
ST, available here:
http://www.st.com/content/st_com/en/products/embedded-software/proximity-sensors-software/stsw-img007.html
********************************************************************************
COPYRIGHT(c) 2017 STMicroelectronics
COPYRIGHT(c) 2018 Pololu Corporation
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. Neither the name of STMicroelectronics nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*******************************************************************************/
#include <Wire.h>
#include "vl53l1_api.h"
// By default, this example blocks while waiting for sensor data to be ready.
// Comment out this line to poll for data ready in a non-blocking way instead.
#define USE_BLOCKING_LOOP
// Timing budget set through VL53L1_SetMeasurementTimingBudgetMicroSeconds().
#define MEASUREMENT_BUDGET_MS 50
// Interval between measurements, set through
// VL53L1_SetInterMeasurementPeriodMilliSeconds(). According to the API user
// manual (rev 2), "the minimum inter-measurement period must be longer than the
// timing budget + 4 ms." The STM32Cube example from ST uses 500 ms, but we
// reduce this to 55 ms to allow faster readings.
#define INTER_MEASUREMENT_PERIOD_MS 55
VL53L1_Dev_t dev;
VL53L1_DEV Dev = &dev;
int status;
void setup()
{
uint8_t byteData = 0;
uint16_t wordData = 0;
Wire.begin();
Wire.setClock(400000);
Serial.begin(115200);
// This is the default 8-bit slave address (including R/W as the least
// significant bit) as expected by the API. Note that the Arduino Wire library
// uses a 7-bit address without the R/W bit instead (0x29 or 0b0101001).
Dev->I2cDevAddr = 0x52;
VL53L1_software_reset(Dev);
VL53L1_RdByte(Dev, 0x010F, &byteData);
Serial.print(F("VL53L1X Model_ID: "));
Serial.println(byteData, HEX);
VL53L1_RdByte(Dev, 0x0110, &byteData);
Serial.print(F("VL53L1X Module_Type: "));
Serial.println(byteData, HEX);
VL53L1_RdWord(Dev, 0x010F, &wordData);
Serial.print(F("VL53L1X: "));
Serial.println(wordData, HEX);
Serial.println(F("Autonomous Ranging Test"));
status = VL53L1_WaitDeviceBooted(Dev);
if(!status) status = VL53L1_DataInit(Dev);
if(!status) status = VL53L1_StaticInit(Dev);
if(!status) status = VL53L1_SetDistanceMode(Dev, VL53L1_DISTANCEMODE_LONG);
if(!status) status = VL53L1_SetMeasurementTimingBudgetMicroSeconds(Dev, (uint32_t)MEASUREMENT_BUDGET_MS * 1000);
if(!status) status = VL53L1_SetInterMeasurementPeriodMilliSeconds(Dev, INTER_MEASUREMENT_PERIOD_MS);
if(!status) status = VL53L1_StartMeasurement(Dev);
if(status)
{
Serial.println(F("VL53L1_StartMeasurement failed"));
while(1);
}
}
void loop()
{
#ifdef USE_BLOCKING_LOOP
// blocking wait for data ready
status = VL53L1_WaitMeasurementDataReady(Dev);
if(!status)
{
printRangingData();
VL53L1_ClearInterruptAndStartMeasurement(Dev);
}
else
{
Serial.print(F("Error waiting for data ready: "));
Serial.println(status);
}
#else
static uint16_t startMs = millis();
uint8_t isReady;
// non-blocking check for data ready
status = VL53L1_GetMeasurementDataReady(Dev, &isReady);
if(!status)
{
if(isReady)
{
printRangingData();
VL53L1_ClearInterruptAndStartMeasurement(Dev);
startMs = millis();
}
else if((uint16_t)(millis() - startMs) > VL53L1_RANGE_COMPLETION_POLLING_TIMEOUT_MS)
{
Serial.print(F("Timeout waiting for data ready."));
VL53L1_ClearInterruptAndStartMeasurement(Dev);
startMs = millis();
}
}
else
{
Serial.print(F("Error getting data ready: "));
Serial.println(status);
}
// Optional polling delay; should be smaller than INTER_MEASUREMENT_PERIOD_MS,
// and MUST be smaller than VL53L1_RANGE_COMPLETION_POLLING_TIMEOUT_MS
delay(10);
#endif
}
void printRangingData()
{
static VL53L1_RangingMeasurementData_t RangingData;
status = VL53L1_GetRangingMeasurementData(Dev, &RangingData);
if(!status)
{
Serial.print(RangingData.RangeStatus);
Serial.print(F(","));
Serial.print(RangingData.RangeMilliMeter);
Serial.print(F(","));
Serial.print(RangingData.SignalRateRtnMegaCps/65536.0);
Serial.print(F(","));
Serial.println(RangingData.AmbientRateRtnMegaCps/65336.0);
}
}