幸运之星正在降临...
点击领取今天的签到奖励!
恭喜!您今天获得了{{mission.data.mission.credit}}积分
我的优惠劵
-
¥优惠劵使用时效:无法使用使用时效:
之前
使用时效:永久有效优惠劵ID:×
没有优惠劵可用!
改進一下程式碼,讓觸摸開關更精確
#define TOUTCH_PIN 4 //Touch 0:GPIO 4
#define LED_PIN 2 //GPIO 2
int touch_value = 100;
int flg = 0;
int cnt = 0;
void setup()
{
Serial.begin(115200);
delay(1000);
Serial.println("ESP32 Touch Test");
pinMode(LED_PIN, OUTPUT);
digitalWrite (LED_PIN, LOW);
}
void loop()
{
touch_value = touchRead(TOUTCH_PIN);
Serial.println(touch_value);
if (touch_value 1500)
{
flg = ~flg;
digitalWrite (LED_PIN, flg);
cnt = 0;
}
}
}
#include
#include
請問連續寫2個#include是什麼語法?
說明一下好嗎?
想學
我想學
我想學
想學,謝謝
這一課的標題好像和內容有些文不對題,內容是在說明如何建立AP
Serial.printf("Number of restart times: %dn", reset_times);
建議改成
Serial.printf("Number of restart times: %d", reset_times);
想學,謝謝
想學,謝謝