File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Using the Grove - OLED Display 0.96 inch
24
24
25
25
### Initialising the driver
26
26
27
- Init and returns true if success, already done in the ` SensorKit ` 's object ` begin() `
27
+ Init the display driver
28
28
29
29
``` cpp
30
30
void setup (){
@@ -45,7 +45,7 @@ void setup() {
45
45
void loop() {
46
46
Oled.setFont(u8x8_font_chroma48medium8_r);
47
47
Oled.drawString(0,0,"Hello World!");
48
- Oled.refreshDisplay(); // only required for SSD1606/7
48
+ Oled.refreshDisplay();
49
49
delay(1000);
50
50
}
51
51
```
@@ -61,7 +61,7 @@ Using the Grove - 3-Axis Digital Accelerometer (±1.5g)
61
61
62
62
### Initialising the sensor
63
63
64
- Init and returns true if success, already done in the ` SensorKit ` 's object ` begin() `
64
+ Initialize the sensor
65
65
66
66
``` cpp
67
67
void setup (){
@@ -138,7 +138,7 @@ Using the Grove Barometer Sensor (BMP280)
138
138
The Pressure sensor can get temperature, pressure and altitude
139
139
140
140
### Initialising the sensor
141
- Init and returns true if success, already done in the ` SensorKit ` 's object ` begin() `
141
+ Initialize the sensor
142
142
``` cpp
143
143
void setup (){
144
144
Pressure.begin();
You can’t perform that action at this time.
0 commit comments