We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36028ff commit 40eed70Copy full SHA for 40eed70
src/Arduino_MKRIoTCarrier_Qtouch.cpp
@@ -82,11 +82,6 @@ bool MKRIoTCarrier_Qtouch::onTouchChange(){
82
}
83
84
85
-void MKRIoTCarrier_Qtouch::updateConfig(int newSens){
86
- TOUCH.setSensorsSensitivity(newSens);
87
- //TOUCH.setSernsorsHysteresis(newHyst);
88
-}
89
-
90
//Manager
91
bool MKRIoTCarrier_Qtouch_Manager::begin(){
92
return TOUCH.begin();
@@ -104,3 +99,8 @@ void MKRIoTCarrier_Qtouch_Manager::update(){
104
99
t_state[4] = TOUCH.read(4);
105
100
106
101
102
+
103
+void MKRIoTCarrier_Qtouch_Manager::updateConfig(int newSens){
+ TOUCH.setSensorsSensitivity(newSens);
+ //TOUCH.setSernsorsHysteresis(newHyst);
+}
0 commit comments