ESP32 for Arduino, 通过电容引脚 T4 以中断的方式检测输入数据, 中断回调函数为 getTouch() , 触摸中断阈值为 40。 下列选项中, 用于设置中断回调函数的语句是? ( )
touchAttachInterrupt(T4, 40, getTouch) ;
touchAttachInterrupt(getTouch, T4, 40) ;
touchAttachInterrupt(T4, getTouch, 40) ;
touchAttachInterrupt(getTouch, 40, T4) ;