Skip to content

Commit

Permalink
Make it V1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
beegee-tokyo committed Apr 10, 2021
1 parent 022d4e7 commit b3b1aaf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Arduino CAP1293 Touch Pad library",
"version": "1.0.0",
"version": "1.0.1",
"keywords": [
"touch",
"cap1293",
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Arduino CAP1293 Touch Pad library
version=1.0.0
version=1.0.1
author=RAKWireless <rakwireless.com>
maintainer=RAKWireless <rakwireless.com>
sentence=RAKWireless library for the RAK14002 module with the CAP1293 sense IC
Expand Down
10 changes: 5 additions & 5 deletions src/CAP1293.h
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ typedef union
} MULTIPLE_TOUCH_PATTERN_REG;

////////////////////////////////
// CAP1293 Class Declearation //
// CAP1293 Class Declaration //
////////////////////////////////
class CAP1293
{
Expand All @@ -234,7 +234,7 @@ class CAP1293
bool isTouched();

// get which key is pressed or released(if enabled release interrupt)
uint8_t getTouchKeyStatus(bool keyStatus[], uint8_t num=3);
uint8_t getTouchKeyStatus(bool keyStatus[], uint8_t num = 3);

// Check if a swipe has occured
bool isRightSwipePulled();
Expand Down Expand Up @@ -270,7 +270,7 @@ class CAP1293
bool isPowerButtonEnabled();
bool isPowerButtonTouched();

// Configures if sensor can detect more than one key input
// Configures if sensor can detect more than one key input
void setMultiTouchEnabled();
void setMultiTouchDisabled();

Expand All @@ -283,10 +283,10 @@ class CAP1293
void setRepeatRateDisabled();

// MTP
void setMTPEnabled(bool left=true, bool middle=true, bool right=true);
void setMTPEnabled(bool left = true, bool middle = true, bool right = true);
bool isMTPStatus();

// Configures if interrupt triggers on Release touch key
// Configures if interrupt triggers on Release touch key
void setReleaseInterruptDisabled();
void setReleaseInterruptEnabled();
bool isReleaseInterruptEnabled();
Expand Down

0 comments on commit b3b1aaf

Please sign in to comment.