代码拉取完成,页面将自动刷新
同步操作将从 FredyXu/cw_esp32_ble_weapp 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#ifndef _AUTO_KEY_H
#define _AUTO_KEY_H
void check_auto_key();
void check_auto_key() {
// 抖动检查
int diff_time = millis() - cs_time;
if(diff_time < s_shake_time) {
return ;
}
bool touch_state_1 = true;
bool touch_state_2 = true;
if(s_touch_key) {
// 读取触摸引脚时,偶尔会出现读未触摸读取值仍然为0的情况(原因待查)。为排除此情况故在读取值为0时进行第二次读取,确保读取到实际触摸所引发的数值。
int touch_val_1 = touchRead(pin_touch_1);
if(touch_val_1 == 0) {
touch_val_1 = touchRead(pin_touch_1);
}
int touch_val_2 = touchRead(pin_touch_2);
if(touch_val_2 == 0) {
touch_val_2 = touchRead(pin_touch_2);
}
if(touch_val_1 < s_touch_val) {
touch_state_1 = false;
}
if(touch_val_2 < s_touch_val) {
touch_state_2 = false;
}
}
bool di_state = true;
bool da_state = true;
bool key_state_di = digitalRead(pin_key_di);
bool key_state_da = digitalRead(pin_key_da);
if(s_auto_key_type) {
di_state = key_state_di && touch_state_1;
da_state = key_state_da && touch_state_2;
}
else {
di_state = key_state_da && touch_state_2;
da_state = key_state_di && touch_state_1;
}
if(!di_state) {
bee(true);
// Serial.print(".");
ble_send("code", ".");
delay(s_u_time);
bee(false);
delay(s_u_time);
flag_space = true;
cs_time = millis();
}
if(!da_state) {
bee(true);
// Serial.print("-");
ble_send("code", "-");
delay(s_u_time * s_di_da_scale);
bee(false);
delay(s_u_time);
flag_space = true;
cs_time = millis();
}
}
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。