Skip to content

Commit 603b60b

Browse files
authored
Merge pull request #26 from per1234/fix-typo
Fix typos in documentation
2 parents 3fe1198 + 2e82198 commit 603b60b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ See the bundled [examples](examples/) for usage and visit the [Microchip Develop
2727

2828
This library is a wrapper around the MCHPTouch library by Microchip, which is bundled in binary form in this distribution in agreement with Microchip.
2929

30-
> Microchip Technology Inc., provides the Microchip Touch Library software subject to the license terms contained at the link below.  By using the Microchip Touch Library, you acknowledge and agree to the terms of the license contained at the link below. [Microchip Touch Library License Agreement](Microchip%20Touch%20Library%20License%20Agreement%20-%20Arduino%20082420.pdf)
30+
> Microchip Technology Inc., provides the Microchip Touch Library software subject to the license terms contained at the link below. By using the Microchip Touch Library, you acknowledge and agree to the terms of the license contained at the link below. [Microchip Touch Library License Agreement](Microchip%20Touch%20Library%20License%20Agreement%20-%20Arduino%20082420.pdf)
3131
3232
The Arduino_MCHPTouch wrapper library is distributed under the terms of the MPL-2.0 license.

examples/ReadSensors/ReadSensors.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ void loop()
3535
// Checks if new data are available
3636
if (TOUCH.available())
3737
{
38-
//reads senseors
38+
//reads sensors
3939
Serial.print("Sensor 1 status: ");
4040
Serial.println(TOUCH.read(0));
4141
Serial.print("Sensor 2 status: ");

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version=1.2.3
33
author=Arduino
44
maintainer=Arduino <[email protected]>
55
sentence=A library for the Atmel touch sensors
6-
paragraph=allows you to read touch sensor values from your Arduino SAMD boards with touch sensors connected. Microchip Technology Inc., provides the Microchip Touch Library software subject to the license terms contained at the link below.  By using the Microchip Touch Library, you acknowledge and agree to the terms of the license contained at the link below.
6+
paragraph=Allows you to read touch sensor values from your Arduino SAMD boards with touch sensors connected. Microchip Technology Inc., provides the Microchip Touch Library software subject to the license terms contained at the link below. By using the Microchip Touch Library, you acknowledge and agree to the terms of the license contained at the link below.
77
category=Sensors
88
url=https://github.com/arduino-libraries/Arduino_MCHPTouch
99
architectures=samd

src/DataStreamer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ extern uint8_t module_error_code;
7171
/*============================================================================
7272
void datastreamer_output(void)
7373
------------------------------------------------------------------------------
74-
Purpose: Forms the datastreamer frame based on the configured modules, Tranmits
74+
Purpose: Forms the datastreamer frame based on the configured modules, Transmits
7575
the frame as single packet through UART port.
7676
Input : none
7777
Output : none

0 commit comments

Comments
 (0)