Skip to content

Commit 2bca785

Browse files
authored
Fixed typos
1 parent 9b299b2 commit 2bca785

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docs/readme.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ setup(){
7575
carrier.begin(); //SD card initialized here
7676

7777
myFile = SD.open("test.txt", FILE_WRITE);
78-
7978
}
8079
```
8180

@@ -247,7 +246,7 @@ Visit our reference about [LPS22HB](https://www.arduino.cc/en/Reference/ArduinoL
247246
**Syntax Example**
248247
```cpp
249248
float pressure;
250-
pressure = carrier.Light.readPressure()
249+
pressure = carrier.Pressure.readPressure()
251250
```
252251

253252
### IMU - LSM6DS3
@@ -256,7 +255,7 @@ Visit our reference about [LSM6DS3](https://www.arduino.cc/en/Reference/Arduino_
256255
**Syntax Example**
257256
```cpp
258257
float aX,aY,aZ;
259-
carrier.IMUmodule.getAcceleration(aX, aY, aZ);
258+
carrier.IMUmodule.readAcceleration(aX, aY, aZ);
260259
```
261260

262261
### Humidity and Temperature - HTS221

0 commit comments

Comments
 (0)