Skip to content

Commit 2291f16

Browse files
authored
Update readme.md
1 parent 1ab8b06 commit 2291f16

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Using the Grove - OLED Display 0.96 inch
2424

2525
### Initialising the driver
2626

27-
Init and returns true if success, already done in the `SensorKit`'s object `begin()`
27+
Init the display driver
2828

2929
```cpp
3030
void setup(){
@@ -45,7 +45,7 @@ void setup() {
4545
void loop() {
4646
Oled.setFont(u8x8_font_chroma48medium8_r);
4747
Oled.drawString(0,0,"Hello World!");
48-
Oled.refreshDisplay(); // only required for SSD1606/7
48+
Oled.refreshDisplay();
4949
delay(1000);
5050
}
5151
```
@@ -61,7 +61,7 @@ Using the Grove - 3-Axis Digital Accelerometer (±1.5g)
6161

6262
### Initialising the sensor
6363

64-
Init and returns true if success, already done in the `SensorKit`'s object `begin()`
64+
Initialize the sensor
6565

6666
```cpp
6767
void setup(){
@@ -138,7 +138,7 @@ Using the Grove Barometer Sensor (BMP280)
138138
The Pressure sensor can get temperature, pressure and altitude
139139

140140
### Initialising the sensor
141-
Init and returns true if success, already done in the `SensorKit`'s object `begin()`
141+
Initialize the sensor
142142
```cpp
143143
void setup(){
144144
Pressure.begin();

0 commit comments

Comments
 (0)