We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcaefa6 commit 2491628Copy full SHA for 2491628
examples/TouchPads/Custom_Sensitivity/Custom_Sensitivity.ino
@@ -6,15 +6,15 @@ bool CARRIER_CASE = false;
6
// When CARRIER_CASE is true it's set to 4 (further)
7
// But if you use Buttons.updateConfig(value) It will not set the above values
8
9
-unsigned int trheshold = 100;
+unsigned int threshold = 100;
10
11
void setup() {
12
// put your setup code here, to run once:
13
Serial.begin(9600);
14
while (!Serial);
15
16
- //Now we can set our custom touch trheshold
17
- carrier.Buttons.updateConfig(trheshold);
+ //Now we can set our custom touch threshold
+ carrier.Buttons.updateConfig(threshold);
18
carrier.begin();
19
}
20
0 commit comments