From 50bb1b5fb56112e220921e696534a9a4f217c185 Mon Sep 17 00:00:00 2001 From: loopsun Date: Tue, 27 Jun 2023 14:34:29 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E8=A7=A6=E6=91=B8=E6=A8=A1?= =?UTF-8?q?=E5=9D=97=E6=96=87=E4=BB=B6=E5=90=8D=E4=BB=A5=E5=8F=8A=E5=BC=95?= =?UTF-8?q?=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- v2/main/main.ino | 2 +- v2/main/{tourch.h => touch.h} | 0 v3/main/main.ino | 2 +- v3/main/{tourch.h => touch.h} | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename v2/main/{tourch.h => touch.h} (100%) rename v3/main/{tourch.h => touch.h} (100%) diff --git a/v2/main/main.ino b/v2/main/main.ino index 560636a..417fa51 100644 --- a/v2/main/main.ino +++ b/v2/main/main.ino @@ -17,7 +17,7 @@ AS5600霍尔传感器 SDA-23 SCL-5 MPU6050六轴传感器 SDA-19 SCL-18 #include #include "Kalman.h" // Source: https://github.com/TKJElectronics/KalmanFilter #include "EEPROM.h" -#include "tourch.h" +#include "touch.h" /* ----ESP32 IO SET---- */ #define ACTIVE_PIN 4 //状态灯 #define BAT_VOLTAGE_SENSE_PIN 34 //电池电压检测ADC,如果旧版PCB无电压检测电路,则注释掉此行 diff --git a/v2/main/tourch.h b/v2/main/touch.h similarity index 100% rename from v2/main/tourch.h rename to v2/main/touch.h diff --git a/v3/main/main.ino b/v3/main/main.ino index 533c143..d9fc869 100644 --- a/v3/main/main.ino +++ b/v3/main/main.ino @@ -17,7 +17,7 @@ AS5600霍尔传感器 SDA-23 SCL-5 MPU6050六轴传感器 SDA-19 SCL-18 #include #include "Kalman.h" // Source: https://github.com/TKJElectronics/KalmanFilter #include "EEPROM.h" -#include "tourch.h" +#include "touch.h" #include /* ----ESP32 IO SET---- */ #define ACTIVE_PIN 4 //状态灯 diff --git a/v3/main/tourch.h b/v3/main/touch.h similarity index 100% rename from v3/main/tourch.h rename to v3/main/touch.h -- Gitee