Skip to content

Commit dce84fe

Browse files
committed
fixed Spell check
1 parent ac664a2 commit dce84fe

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

docs/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Constructor of the object
5050
MKRIoTCarrier yourName; //In the examples we name it as *carrier*
5151
```
5252

53-
Intialization example sketch
53+
Initialization example sketch
5454

5555
```cpp
5656
#include <Arduino_MKRIoTCarrier.h>
@@ -97,7 +97,7 @@ Init the calaibration and the set up for the touchable pads (Already done in the
9797
```cpp
9898
Buttons.begin()
9999
```
100-
Read the state of the pads and save them to be analize in the diferent type of touch events
100+
Read the state of the pads and save them to be analyze in the different type of touch events
101101
```cpp
102102
Buttons.update()
103103
```
@@ -126,7 +126,7 @@ Get both, touched and released
126126
ButtonX.onTouchChange()
127127
```
128128

129-
In case you have another enclosure you can change the sensivity of the pads, 3-100
129+
In case you have another enclosure you can change the sensitivity of the pads, 3-100
130130
Automatically configured when you set the `CARRIER_CASE` boolean, by default is false (sensitivity threshold 4)
131131

132132
```cpp

examples/All_Features/All_Features.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ void loop() {
5353
//Simple relay open and close loop
5454
/* Relay function
5555
open() - goes to Normally Open (NO) circuit, status LED will be ON
56-
close() - goes to Normally Close (NC) cirucit, status LED will be OFF
56+
close() - goes to Normally Close (NC) circuit, status LED will be OFF
5757
*/
5858
carrier.Relay1.close();
5959
delay(1000);

examples/TouchPads/TouchTypes/TouchTypes.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Arduino_Qtouch - Sensor data read Example
33
This example shows how to configure and read data
4-
from touch sensors bottons on MKR IoT Carrier and
4+
from touch sensors buttons on MKR IoT Carrier and
55
prints updates to the Serial Monitor.
66
77
The circuit:

examples/TouchPads/getTouch/getTouch.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
Arduino_Qtouch - Sensor data read Example
33
This example shows how to configure and read data
4-
from touch sensors bottons on MKR IoT Carrier and
4+
from touch sensors buttons on MKR IoT Carrier and
55
prints updates to the Serial Monitor.
66
77
The circuit:

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version=1.0.0
33
author=Riccardo Rizzo, Jose García, Pablo Marquínez
44
maintainer=Arduino <info@arduino.cc>
55
sentence=Controlling the IoT MKR Carrier
6-
paragraph=Allows you to controll all the components included in the Explore IoT Kit
6+
paragraph=Allows you to control all the components included in the Explore IoT Kit
77
category=Sensors + Relays
88
url=https://github.com/arduino-libraries/Arduino_MKRIoTCarrier
99
architectures=samd

src/Arduino_MKRIoTCarrier_Qtouch.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class MKRIoTCarrierQtouch{
6464

6565
//Config
6666
bool setOnChange = false; //Touch on change
67-
bool setOnNormal = false; //Allways read
67+
bool setOnNormal = false; //Always read
6868
bool setOnUp = false; //When the pad is not being touched
6969
bool setOnDown = false; //When is pressed, to make 2 Downs you need to touch it, release it and touch it again
7070
};

0 commit comments

Comments
 (0)