File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,6 @@ setup(){
75
75
carrier.begin(); //SD card initialized here
76
76
77
77
myFile = SD.open("test.txt", FILE_WRITE);
78
-
79
78
}
80
79
```
81
80
@@ -247,7 +246,7 @@ Visit our reference about [LPS22HB](https://www.arduino.cc/en/Reference/ArduinoL
247
246
** Syntax Example**
248
247
``` cpp
249
248
float pressure;
250
- pressure = carrier.Light .readPressure()
249
+ pressure = carrier.Pressure .readPressure()
251
250
```
252
251
253
252
### IMU - LSM6DS3
@@ -256,7 +255,7 @@ Visit our reference about [LSM6DS3](https://www.arduino.cc/en/Reference/Arduino_
256
255
** Syntax Example**
257
256
``` cpp
258
257
float aX,aY,aZ;
259
- carrier.IMUmodule.getAcceleration (aX, aY, aZ);
258
+ carrier.IMUmodule.readAcceleration (aX, aY, aZ);
260
259
```
261
260
262
261
### Humidity and Temperature - HTS221
You can’t perform that action at this time.
0 commit comments