├── Buletooth_controler ├── .gitignore ├── .idea │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── honor │ │ │ └── whonor │ │ │ └── buletooth_controler │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── honor │ │ │ │ └── whonor │ │ │ │ └── buletooth_controler │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── timg.jpeg │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── timg.jpeg │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── timg.jpeg │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── timg.jpeg │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── timg.jpeg │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── honor │ │ └── whonor │ │ └── buletooth_controler │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── HC-05蓝牙模块AT指令及配置说明.pdf ├── Listings ├── bluetCarControler.m51 ├── main.lst └── motor.lst ├── Objects ├── bluetCarControler ├── bluetCarControler.build_log.htm ├── bluetCarControler.hex ├── bluetCarControler.lnp ├── bluetCarControler.plg ├── main.obj └── motor.obj ├── PWM_RUN.h ├── README.md ├── bluetCarControler.uvgui.WHONOR ├── bluetCarControler.uvopt ├── bluetCarControler.uvproj ├── main.c ├── motor.c ├── motor.h └── stc89xx.h /Buletooth_controler/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/.gitignore -------------------------------------------------------------------------------- /Buletooth_controler/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/.idea/compiler.xml -------------------------------------------------------------------------------- /Buletooth_controler/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Buletooth_controler/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/.idea/gradle.xml -------------------------------------------------------------------------------- /Buletooth_controler/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/.idea/misc.xml -------------------------------------------------------------------------------- /Buletooth_controler/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/.idea/modules.xml -------------------------------------------------------------------------------- /Buletooth_controler/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Buletooth_controler/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/.idea/vcs.xml -------------------------------------------------------------------------------- /Buletooth_controler/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Buletooth_controler/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/build.gradle -------------------------------------------------------------------------------- /Buletooth_controler/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/proguard-rules.pro -------------------------------------------------------------------------------- /Buletooth_controler/app/src/androidTest/java/com/honor/whonor/buletooth_controler/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/androidTest/java/com/honor/whonor/buletooth_controler/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /Buletooth_controler/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Buletooth_controler/app/src/main/java/com/honor/whonor/buletooth_controler/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/main/java/com/honor/whonor/buletooth_controler/MainActivity.java -------------------------------------------------------------------------------- /Buletooth_controler/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Buletooth_controler/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Buletooth_controler/app/src/main/res/mipmap-hdpi/timg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/main/res/mipmap-hdpi/timg.jpeg -------------------------------------------------------------------------------- /Buletooth_controler/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Buletooth_controler/app/src/main/res/mipmap-mdpi/timg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/main/res/mipmap-mdpi/timg.jpeg -------------------------------------------------------------------------------- /Buletooth_controler/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Buletooth_controler/app/src/main/res/mipmap-xhdpi/timg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/main/res/mipmap-xhdpi/timg.jpeg -------------------------------------------------------------------------------- /Buletooth_controler/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Buletooth_controler/app/src/main/res/mipmap-xxhdpi/timg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/main/res/mipmap-xxhdpi/timg.jpeg -------------------------------------------------------------------------------- /Buletooth_controler/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Buletooth_controler/app/src/main/res/mipmap-xxxhdpi/timg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/main/res/mipmap-xxxhdpi/timg.jpeg -------------------------------------------------------------------------------- /Buletooth_controler/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Buletooth_controler/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Buletooth_controler/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Buletooth_controler/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Buletooth_controler/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Buletooth_controler/app/src/test/java/com/honor/whonor/buletooth_controler/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/app/src/test/java/com/honor/whonor/buletooth_controler/ExampleUnitTest.java -------------------------------------------------------------------------------- /Buletooth_controler/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/build.gradle -------------------------------------------------------------------------------- /Buletooth_controler/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/gradle.properties -------------------------------------------------------------------------------- /Buletooth_controler/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Buletooth_controler/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Buletooth_controler/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/gradlew -------------------------------------------------------------------------------- /Buletooth_controler/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Buletooth_controler/gradlew.bat -------------------------------------------------------------------------------- /Buletooth_controler/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /HC-05蓝牙模块AT指令及配置说明.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/HC-05蓝牙模块AT指令及配置说明.pdf -------------------------------------------------------------------------------- /Listings/bluetCarControler.m51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Listings/bluetCarControler.m51 -------------------------------------------------------------------------------- /Listings/main.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Listings/main.lst -------------------------------------------------------------------------------- /Listings/motor.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Listings/motor.lst -------------------------------------------------------------------------------- /Objects/bluetCarControler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Objects/bluetCarControler -------------------------------------------------------------------------------- /Objects/bluetCarControler.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Objects/bluetCarControler.build_log.htm -------------------------------------------------------------------------------- /Objects/bluetCarControler.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Objects/bluetCarControler.hex -------------------------------------------------------------------------------- /Objects/bluetCarControler.lnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Objects/bluetCarControler.lnp -------------------------------------------------------------------------------- /Objects/bluetCarControler.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Objects/bluetCarControler.plg -------------------------------------------------------------------------------- /Objects/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Objects/main.obj -------------------------------------------------------------------------------- /Objects/motor.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/Objects/motor.obj -------------------------------------------------------------------------------- /PWM_RUN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/PWM_RUN.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/README.md -------------------------------------------------------------------------------- /bluetCarControler.uvgui.WHONOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/bluetCarControler.uvgui.WHONOR -------------------------------------------------------------------------------- /bluetCarControler.uvopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/bluetCarControler.uvopt -------------------------------------------------------------------------------- /bluetCarControler.uvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/bluetCarControler.uvproj -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/main.c -------------------------------------------------------------------------------- /motor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/motor.c -------------------------------------------------------------------------------- /motor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/motor.h -------------------------------------------------------------------------------- /stc89xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whonor/BluetoothCarController/HEAD/stc89xx.h --------------------------------------------------------------------------------