Arduino ESP32

参考:https://blog.csdn.net/finedayforu/article/details/108465009

TSR , threshold)

ESP32专门提供了电容触摸传感器的功能, 共有T0,T2~T9 共 9个touch传感器可用.分别对应引脚4、2、15、13、12、14、27、33、32. 无需设置PinMode

touchRead(pin)

返回值 0~255. 触摸强度
注意: 摸得越瓷实,数值越小

void setup() { Serial.begin(9600); } void loop() { Serial.printf("touch:%d\n",touchRead(4)); }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zzsppf.html