Skip to content

Commit 947294d

Browse files
committed
Correct typos in comments and documentation
1 parent 8cabe24 commit 947294d

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Arduino Sensorkit Library
1+
# Arduino SensorKit Library
22

33
[![Check Arduino status](https://github.com/arduino-libraries/Arduino_SensorKit/actions/workflows/check-arduino.yml/badge.svg)](https://github.com/arduino-libraries/Arduino_SensorKit/actions/workflows/check-arduino.yml)
44
[![Compile Examples status](https://github.com/arduino-libraries/Arduino_SensorKit/actions/workflows/compile-examples.yml/badge.svg)](https://github.com/arduino-libraries/Arduino_SensorKit/actions/workflows/compile-examples.yml)
55
[![Spell Check status](https://github.com/arduino-libraries/Arduino_SensorKit/actions/workflows/spell-check.yml/badge.svg)](https://github.com/arduino-libraries/Arduino_SensorKit/actions/workflows/spell-check.yml)
66

77
This documentation contains information about the classes and the usage of Arduino_SensorKit library which is primarily used in the [Arduino Sensor Kit](https://store.arduino.cc/sensor-kit-base). This library is a wrapper for other libraries such as
88

9-
* [u8g2](https://github.com/olikraus/U8g2_Arduino) Library for monochrome displayes
9+
* [u8g2](https://github.com/olikraus/U8g2_Arduino) Library for monochrome displays
1010
* [Seeed_Arduino_LIS3DHTR](https://github.com/Seeed-Studio/Seeed_Arduino_LIS3DHTR) for the 3 Axis Accelerometer
1111
* [Grove_BMP280](https://github.com/Seeed-Studio/Grove_BMP280) Library for the Barometer
1212
* [DHT-sensor-library](https://github.com/adafruit/DHT-sensor-library) for the Temperature and Humidity Sensor
1313

14-
The Arduino_SensorKit Library can be downloaded from the Arduino IDEs library manager or from the github repository
14+
The Arduino_SensorKit Library can be downloaded from the Arduino IDE's library manager or from the GitHub repository.

docs/readme.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# **Sensor Kit Reference**
22

33
This documentation contains information about the classes and the usage of **Arduino_SensorKit** library which is primarily used in the [Arduino Sensor Kit](https://sensorkit.arduino.cc/). This library is a wrapper for other libraries such as
4-
* [u8g2 Library for monochrome displayes](https://github.com/olikraus/u8g2)
4+
* [u8g2 Library for monochrome displays](https://github.com/olikraus/u8g2)
55
* [Seeed_Arduino_LIS3DHTR for the 3 Axis Accelerometer](https://github.com/Seeed-Studio/Seeed_Arduino_LIS3DHTR)
66
* [Grove_BMP280 Library for the Barometer](https://github.com/Seeed-Studio/Grove_BMP280)
77
* [DHT-sensor-library for the Temperature and Humidity Sensor](https://github.com/adafruit/DHT-sensor-library)
88

9-
The Arduino_SensorKit Library can be downloaded from the Arduino IDE’s library manager or from the [github repository](https://github.com/arduino-libraries/Arduino_SensorKit)
9+
The Arduino_SensorKit Library can be downloaded from the Arduino IDE's Library Manager or from the [GitHub repository](https://github.com/arduino-libraries/Arduino_SensorKit)
1010

1111
# Classes
1212

@@ -22,7 +22,7 @@ The Arduino_SensorKit Library can be downloaded from the Arduino IDE’s library
2222
## OLED
2323
Using the Grove - OLED Display 0.96 inch
2424

25-
### Initialising the driver
25+
### Initializing the driver
2626

2727
Init the display driver
2828

@@ -59,7 +59,7 @@ void loop() {
5959
## Accelerometer
6060
Using the Grove - 3-Axis Digital Accelerometer (±1.5g)
6161

62-
### Initialising the sensor
62+
### Initializing the sensor
6363

6464
Initialize the sensor
6565

@@ -137,7 +137,7 @@ Return if the sensor its good to give the data
137137
Using the Grove Barometer Sensor (BMP280)
138138
The Pressure sensor can get temperature, pressure and altitude
139139

140-
### Initialising the sensor
140+
### Initializing the sensor
141141
Initialize the sensor
142142
```cpp
143143
void setup(){
@@ -212,7 +212,7 @@ By default, once you include the library it has been set to digital pin `3`, it
212212
#define DHTPIN yourPin
213213
```
214214
215-
### Initialising the sensor
215+
### Initializing the sensor
216216
```cpp
217217
void setup(){
218218
Environment.begin();

examples/Combined_Demo/Combined_Demo.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Combined Demo by Marc MERLIN <marc_soft@merlins.org>
22
// Reviewed by Pablo Marquínez <p.marquinez@arduino.cc>
3-
// This demo use all the devices from the Arduino SensorKit
3+
// This demo uses all the devices from the Arduino Sensor Kit
44
// Showing the values on the Display
55

66
#include "Arduino_SensorKit.h"

examples/Pressure_Sensor/Pressure_Sensor.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ void loop() {
99
// Get and print temperatures
1010
Serial.print("Temp: ");
1111
Serial.print(Pressure.readTemperature());
12-
Serial.println("C"); // The unit for Celsius because original arduino don't support speical symbols
12+
Serial.println("C"); // The unit for Celsius because original Arduino don't support special symbols
1313

1414
// Get and print atmospheric pressure data
1515
Serial.print("Pressure: ");

keywords.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#######################################
2-
# Syntax Coloring Map of SensorKit
2+
# Syntax Coloring Map of Arduino_SensorKit
33
#######################################
44

55
#######################################

src/Arduino_SensorKit.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include "Arduino_SensorKit_BMP280.h" // Pressure
1515
#include "Arduino_SensorKit_LIS3DHTR.h" // Accel
1616
#include "DHT.h" // Temp & Humidity
17-
#include "U8x8lib.h" // Oled Display
17+
#include "U8x8lib.h" // OLED Display
1818

1919
//Defines
2020
#ifndef DHTTYPE

0 commit comments

Comments
 (0)