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
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() {
4545void 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)
138138The 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();
You can’t perform that action at this time.
0 commit comments