├── 1.Hareware └── ESP01S麦轮 │ ├── ESP01S麦轮.PcbDoc │ ├── ESP01S麦轮.PrjPcb │ ├── ESP01S麦轮.SchDoc │ └── ESP01S麦轮.html ├── 2.Fireware └── MCar │ └── MCar.ino ├── 3.Software ├── MCar.apk └── MCar_Android │ ├── .gitignore │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── mcar │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── mcar │ │ │ │ ├── CustomView │ │ │ │ └── JoystickView.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ ├── ic_stick.xml │ │ │ ├── oval.xml │ │ │ └── ring.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── joystick_layout.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ ├── sttrs.xml │ │ │ ├── styles.xml │ │ │ └── themes.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── mcar │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── 4.Docs ├── B站up主@孟德尔の公主切的麦轮资料.zip ├── ESP01S引脚定义.txt ├── 电机座5个一体.STL ├── 联轴器-给成品麦轮的(容易让电机断,不建议使用).STL └── 辊子100个.STL ├── 5.Img ├── img_1.jpg ├── img_2.jpg ├── img_3.jpg ├── 嫖电池.jpg ├── 麦轮公式.jpg └── 麦轮控制.jpg ├── LICENSE ├── README.md └── 材料清单.txt /1.Hareware/ESP01S麦轮/ESP01S麦轮.PcbDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/1.Hareware/ESP01S麦轮/ESP01S麦轮.PcbDoc -------------------------------------------------------------------------------- /1.Hareware/ESP01S麦轮/ESP01S麦轮.PrjPcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/1.Hareware/ESP01S麦轮/ESP01S麦轮.PrjPcb -------------------------------------------------------------------------------- /1.Hareware/ESP01S麦轮/ESP01S麦轮.SchDoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/1.Hareware/ESP01S麦轮/ESP01S麦轮.SchDoc -------------------------------------------------------------------------------- /1.Hareware/ESP01S麦轮/ESP01S麦轮.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/1.Hareware/ESP01S麦轮/ESP01S麦轮.html -------------------------------------------------------------------------------- /2.Fireware/MCar/MCar.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/2.Fireware/MCar/MCar.ino -------------------------------------------------------------------------------- /3.Software/MCar.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar.apk -------------------------------------------------------------------------------- /3.Software/MCar_Android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/.gitignore -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/build.gradle -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/proguard-rules.pro -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/androidTest/java/com/example/mcar/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/androidTest/java/com/example/mcar/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/java/com/example/mcar/CustomView/JoystickView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/java/com/example/mcar/CustomView/JoystickView.java -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/java/com/example/mcar/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/java/com/example/mcar/MainActivity.java -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/drawable-v24/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/drawable-v24/ic_launcher_background.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/drawable-v24/ic_stick.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/drawable-v24/ic_stick.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/drawable-v24/oval.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/drawable-v24/oval.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/drawable-v24/ring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/drawable-v24/ring.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/layout/joystick_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/layout/joystick_layout.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/values/sttrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/values/sttrs.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /3.Software/MCar_Android/app/src/test/java/com/example/mcar/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/app/src/test/java/com/example/mcar/ExampleUnitTest.java -------------------------------------------------------------------------------- /3.Software/MCar_Android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/build.gradle -------------------------------------------------------------------------------- /3.Software/MCar_Android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/gradle.properties -------------------------------------------------------------------------------- /3.Software/MCar_Android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /3.Software/MCar_Android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /3.Software/MCar_Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/gradlew -------------------------------------------------------------------------------- /3.Software/MCar_Android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/3.Software/MCar_Android/gradlew.bat -------------------------------------------------------------------------------- /3.Software/MCar_Android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "MCar" 2 | include ':app' 3 | -------------------------------------------------------------------------------- /4.Docs/B站up主@孟德尔の公主切的麦轮资料.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/4.Docs/B站up主@孟德尔の公主切的麦轮资料.zip -------------------------------------------------------------------------------- /4.Docs/ESP01S引脚定义.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/4.Docs/ESP01S引脚定义.txt -------------------------------------------------------------------------------- /4.Docs/电机座5个一体.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/4.Docs/电机座5个一体.STL -------------------------------------------------------------------------------- /4.Docs/联轴器-给成品麦轮的(容易让电机断,不建议使用).STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/4.Docs/联轴器-给成品麦轮的(容易让电机断,不建议使用).STL -------------------------------------------------------------------------------- /4.Docs/辊子100个.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/4.Docs/辊子100个.STL -------------------------------------------------------------------------------- /5.Img/img_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/5.Img/img_1.jpg -------------------------------------------------------------------------------- /5.Img/img_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/5.Img/img_2.jpg -------------------------------------------------------------------------------- /5.Img/img_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/5.Img/img_3.jpg -------------------------------------------------------------------------------- /5.Img/嫖电池.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/5.Img/嫖电池.jpg -------------------------------------------------------------------------------- /5.Img/麦轮公式.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/5.Img/麦轮公式.jpg -------------------------------------------------------------------------------- /5.Img/麦轮控制.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/5.Img/麦轮控制.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/README.md -------------------------------------------------------------------------------- /材料清单.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndyXFuture/MCar-Arduino-ESP01S/HEAD/材料清单.txt --------------------------------------------------------------------------------