├── CarPlay-TTGO ├── .gitignore ├── .pio │ ├── build │ │ └── project.checksum │ └── libdeps │ │ └── ttgo-t1 │ │ └── Unity │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .github │ │ └── workflows │ │ │ └── main.yml │ │ ├── .gitignore │ │ ├── .piopm │ │ ├── CMakeLists.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── auto │ │ ├── colour_prompt.rb │ │ ├── colour_reporter.rb │ │ ├── generate_config.yml │ │ ├── generate_module.rb │ │ ├── generate_test_runner.rb │ │ ├── parse_output.rb │ │ ├── run_test.erb │ │ ├── stylize_as_junit.rb │ │ ├── test_file_filter.rb │ │ ├── type_sanitizer.rb │ │ ├── unity_test_summary.py │ │ ├── unity_test_summary.rb │ │ └── unity_to_junit.py │ │ ├── examples │ │ ├── example_1 │ │ │ ├── makefile │ │ │ ├── readme.txt │ │ │ ├── src │ │ │ │ ├── ProductionCode.c │ │ │ │ ├── ProductionCode.h │ │ │ │ ├── ProductionCode2.c │ │ │ │ └── ProductionCode2.h │ │ │ └── test │ │ │ │ ├── TestProductionCode.c │ │ │ │ ├── TestProductionCode2.c │ │ │ │ └── test_runners │ │ │ │ ├── TestProductionCode2_Runner.c │ │ │ │ └── TestProductionCode_Runner.c │ │ ├── example_2 │ │ │ ├── makefile │ │ │ ├── readme.txt │ │ │ ├── src │ │ │ │ ├── ProductionCode.c │ │ │ │ ├── ProductionCode.h │ │ │ │ ├── ProductionCode2.c │ │ │ │ └── ProductionCode2.h │ │ │ └── test │ │ │ │ ├── TestProductionCode.c │ │ │ │ ├── TestProductionCode2.c │ │ │ │ └── test_runners │ │ │ │ ├── TestProductionCode2_Runner.c │ │ │ │ ├── TestProductionCode_Runner.c │ │ │ │ └── all_tests.c │ │ ├── example_3 │ │ │ ├── helper │ │ │ │ ├── UnityHelper.c │ │ │ │ └── UnityHelper.h │ │ │ ├── rakefile.rb │ │ │ ├── rakefile_helper.rb │ │ │ ├── readme.txt │ │ │ ├── src │ │ │ │ ├── ProductionCode.c │ │ │ │ ├── ProductionCode.h │ │ │ │ ├── ProductionCode2.c │ │ │ │ └── ProductionCode2.h │ │ │ ├── target_gcc_32.yml │ │ │ └── test │ │ │ │ ├── TestProductionCode.c │ │ │ │ └── TestProductionCode2.c │ │ ├── example_4 │ │ │ ├── meson.build │ │ │ ├── readme.txt │ │ │ ├── src │ │ │ │ ├── ProductionCode.c │ │ │ │ ├── ProductionCode.h │ │ │ │ ├── ProductionCode2.c │ │ │ │ ├── ProductionCode2.h │ │ │ │ └── meson.build │ │ │ ├── subprojects │ │ │ │ └── unity.wrap │ │ │ └── test │ │ │ │ ├── TestProductionCode.c │ │ │ │ ├── TestProductionCode2.c │ │ │ │ ├── meson.build │ │ │ │ └── test_runners │ │ │ │ ├── TestProductionCode2_Runner.c │ │ │ │ ├── TestProductionCode_Runner.c │ │ │ │ └── meson.build │ │ └── unity_config.h │ │ ├── library.json │ │ ├── meson.build │ │ ├── platformio-build.py │ │ ├── src │ │ ├── meson.build │ │ ├── unity.c │ │ ├── unity.h │ │ └── unity_internals.h │ │ └── unityConfig.cmake ├── .vscode │ ├── c_cpp_properties.json │ ├── extensions.json │ ├── launch.json │ └── settings.json ├── CMakeLists.txt ├── include │ └── README ├── lib │ ├── Icons │ │ └── Icons.h │ ├── Information │ │ └── Information.h │ └── README ├── my_memsettings.csv ├── platformio.ini ├── sdkconfig.emulator-windows ├── src │ ├── CMakeLists.txt │ └── main.cpp └── test │ └── README ├── CarPlayAndroid ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── deploymentTargetDropDown.xml │ ├── gradle.xml │ ├── jarRepositories.xml │ ├── migrations.xml │ ├── misc.xml │ └── vcs.xml ├── app-debug-androidTest.apk ├── app-debug-new.apk ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── carplay_android │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── direction_samples │ │ │ │ ├── ARRIVE.png │ │ │ │ ├── ARRIVE_LEFT.png │ │ │ │ ├── ARRIVE_RIGHT.png │ │ │ │ ├── CONTINUE_LEFT.png │ │ │ │ ├── CONTINUE_RETURN.png │ │ │ │ ├── CONTINUE_RIGHT.png │ │ │ │ ├── CONTINUE_SLIGHT_LEFT.png │ │ │ │ ├── CONTINUE_SLIGHT_RIGHT.png │ │ │ │ ├── CONTINUE_STRAIGHT.png │ │ │ │ ├── DEPART.png │ │ │ │ ├── FORK.png │ │ │ │ ├── POINTER.png │ │ │ │ ├── ROTATORY_EXIT.png │ │ │ │ ├── ROTATORY_EXIT_INVERTED.png │ │ │ │ ├── ROTATORY_LEFT.png │ │ │ │ ├── ROTATORY_LEFT_INVERTED.png │ │ │ │ ├── ROTATORY_RIGHT.png │ │ │ │ ├── ROTATORY_RIGHT_INVERTED.png │ │ │ │ ├── ROTATORY_SHARP_LEFT.png │ │ │ │ ├── ROTATORY_SHARP_LEFT_INVERTED.png │ │ │ │ ├── ROTATORY_SHARP_RIGHT.png │ │ │ │ ├── ROTATORY_SHARP_RIGHT_INVERTED.png │ │ │ │ ├── ROTATORY_SLIGHT_LEFT.png │ │ │ │ ├── ROTATORY_SLIGHT_LEFT_INVERTED.png │ │ │ │ ├── ROTATORY_SLIGHT_RIGHT.png │ │ │ │ ├── ROTATORY_SLIGHT_RIGHT_INVERTED.png │ │ │ │ ├── ROTATORY_STRAIGHT.png │ │ │ │ ├── ROTATORY_STRAIGHT_INVERTED.png │ │ │ │ ├── ROTATORY_TOTAL.png │ │ │ │ ├── ROTATORY_TOTAL_INVERTED.png │ │ │ │ ├── SHARP_LEFT.png │ │ │ │ ├── SHARP_RIGHT.png │ │ │ │ ├── SLIGHT_LEFT.png │ │ │ │ └── SLIGHT_RIGHT.png │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── carplay_android │ │ │ │ ├── BleScanPage.java │ │ │ │ ├── LeDeviceListAdapter.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── javabeans │ │ │ │ ├── JavaBeanBitmap.java │ │ │ │ ├── JavaBeanDevice.java │ │ │ │ └── JavaBeanFilters.java │ │ │ │ ├── services │ │ │ │ ├── BleService.java │ │ │ │ └── NotificationService.java │ │ │ │ └── utils │ │ │ │ ├── BroadcastUtils.java │ │ │ │ ├── DirectionUtils.java │ │ │ │ └── ScanBleDeviceUtils.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── button.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── little_dot.xml │ │ │ └── status_dot.xml │ │ │ ├── layout │ │ │ ├── activity_ble_scan_page.xml │ │ │ ├── activity_main.xml │ │ │ └── device_information.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── carplay_android │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── LICENSE ├── README.md └── docs ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg └── 5.jpg /CarPlay-TTGO/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.gitignore -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/build/project.checksum: -------------------------------------------------------------------------------- 1 | fdea27b312f7a4eb4c1c5bd9f564057fa3c83fea -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/.editorconfig -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/.gitattributes -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/.github/workflows/main.yml -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/.gitignore -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/.piopm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/.piopm -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/CMakeLists.txt -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/LICENSE.txt -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/README.md -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/colour_prompt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/colour_prompt.rb -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/colour_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/colour_reporter.rb -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/generate_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/generate_config.yml -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/generate_module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/generate_module.rb -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/generate_test_runner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/generate_test_runner.rb -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/parse_output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/parse_output.rb -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/run_test.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/run_test.erb -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/stylize_as_junit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/stylize_as_junit.rb -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/test_file_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/test_file_filter.rb -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/type_sanitizer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/type_sanitizer.rb -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/unity_test_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/unity_test_summary.py -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/unity_test_summary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/unity_test_summary.rb -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/unity_to_junit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/auto/unity_to_junit.py -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/makefile -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/readme.txt -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/src/ProductionCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/src/ProductionCode.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/src/ProductionCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/src/ProductionCode.h -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/src/ProductionCode2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/src/ProductionCode2.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/src/ProductionCode2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/src/ProductionCode2.h -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/test/TestProductionCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/test/TestProductionCode.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/test/TestProductionCode2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/test/TestProductionCode2.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/makefile -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/readme.txt -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/src/ProductionCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/src/ProductionCode.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/src/ProductionCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/src/ProductionCode.h -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/src/ProductionCode2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/src/ProductionCode2.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/src/ProductionCode2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/src/ProductionCode2.h -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/test/TestProductionCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/test/TestProductionCode.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/test/TestProductionCode2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/test/TestProductionCode2.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/test/test_runners/TestProductionCode2_Runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/test/test_runners/TestProductionCode2_Runner.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/test/test_runners/TestProductionCode_Runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/test/test_runners/TestProductionCode_Runner.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/test/test_runners/all_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_2/test/test_runners/all_tests.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/helper/UnityHelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/helper/UnityHelper.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/helper/UnityHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/helper/UnityHelper.h -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/rakefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/rakefile.rb -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/rakefile_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/rakefile_helper.rb -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/readme.txt -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/src/ProductionCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/src/ProductionCode.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/src/ProductionCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/src/ProductionCode.h -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/src/ProductionCode2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/src/ProductionCode2.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/src/ProductionCode2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/src/ProductionCode2.h -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/target_gcc_32.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/target_gcc_32.yml -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/test/TestProductionCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/test/TestProductionCode.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/test/TestProductionCode2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_3/test/TestProductionCode2.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/meson.build -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/readme.txt -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/src/ProductionCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/src/ProductionCode.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/src/ProductionCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/src/ProductionCode.h -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/src/ProductionCode2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/src/ProductionCode2.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/src/ProductionCode2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/src/ProductionCode2.h -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/src/meson.build -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/subprojects/unity.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/subprojects/unity.wrap -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/test/TestProductionCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/test/TestProductionCode.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/test/TestProductionCode2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/test/TestProductionCode2.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/test/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/test/meson.build -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/test/test_runners/TestProductionCode2_Runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/test/test_runners/TestProductionCode2_Runner.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/test/test_runners/TestProductionCode_Runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/test/test_runners/TestProductionCode_Runner.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/test/test_runners/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/example_4/test/test_runners/meson.build -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/unity_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/examples/unity_config.h -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/library.json -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/meson.build -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/platformio-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/platformio-build.py -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/src/meson.build -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/src/unity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/src/unity.c -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/src/unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/src/unity.h -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/src/unity_internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/src/unity_internals.h -------------------------------------------------------------------------------- /CarPlay-TTGO/.pio/libdeps/ttgo-t1/Unity/unityConfig.cmake: -------------------------------------------------------------------------------- 1 | include(${CMAKE_CURRENT_LIST_DIR}/unityTargets.cmake) -------------------------------------------------------------------------------- /CarPlay-TTGO/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /CarPlay-TTGO/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.vscode/extensions.json -------------------------------------------------------------------------------- /CarPlay-TTGO/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.vscode/launch.json -------------------------------------------------------------------------------- /CarPlay-TTGO/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/.vscode/settings.json -------------------------------------------------------------------------------- /CarPlay-TTGO/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/CMakeLists.txt -------------------------------------------------------------------------------- /CarPlay-TTGO/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/include/README -------------------------------------------------------------------------------- /CarPlay-TTGO/lib/Icons/Icons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/lib/Icons/Icons.h -------------------------------------------------------------------------------- /CarPlay-TTGO/lib/Information/Information.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/lib/Information/Information.h -------------------------------------------------------------------------------- /CarPlay-TTGO/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/lib/README -------------------------------------------------------------------------------- /CarPlay-TTGO/my_memsettings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/my_memsettings.csv -------------------------------------------------------------------------------- /CarPlay-TTGO/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/platformio.ini -------------------------------------------------------------------------------- /CarPlay-TTGO/sdkconfig.emulator-windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/sdkconfig.emulator-windows -------------------------------------------------------------------------------- /CarPlay-TTGO/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/src/CMakeLists.txt -------------------------------------------------------------------------------- /CarPlay-TTGO/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/src/main.cpp -------------------------------------------------------------------------------- /CarPlay-TTGO/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlay-TTGO/test/README -------------------------------------------------------------------------------- /CarPlayAndroid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/.gitignore -------------------------------------------------------------------------------- /CarPlayAndroid/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /CarPlayAndroid/.idea/.name: -------------------------------------------------------------------------------- 1 | CarPlay-Android -------------------------------------------------------------------------------- /CarPlayAndroid/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/.idea/compiler.xml -------------------------------------------------------------------------------- /CarPlayAndroid/.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /CarPlayAndroid/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/.idea/gradle.xml -------------------------------------------------------------------------------- /CarPlayAndroid/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /CarPlayAndroid/.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/.idea/migrations.xml -------------------------------------------------------------------------------- /CarPlayAndroid/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/.idea/misc.xml -------------------------------------------------------------------------------- /CarPlayAndroid/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/.idea/vcs.xml -------------------------------------------------------------------------------- /CarPlayAndroid/app-debug-androidTest.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app-debug-androidTest.apk -------------------------------------------------------------------------------- /CarPlayAndroid/app-debug-new.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app-debug-new.apk -------------------------------------------------------------------------------- /CarPlayAndroid/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /CarPlayAndroid/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/build.gradle -------------------------------------------------------------------------------- /CarPlayAndroid/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/proguard-rules.pro -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/androidTest/java/com/example/carplay_android/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/androidTest/java/com/example/carplay_android/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ARRIVE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ARRIVE.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ARRIVE_LEFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ARRIVE_LEFT.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ARRIVE_RIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ARRIVE_RIGHT.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/CONTINUE_LEFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/CONTINUE_LEFT.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/CONTINUE_RETURN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/CONTINUE_RETURN.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/CONTINUE_RIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/CONTINUE_RIGHT.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/CONTINUE_SLIGHT_LEFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/CONTINUE_SLIGHT_LEFT.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/CONTINUE_SLIGHT_RIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/CONTINUE_SLIGHT_RIGHT.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/CONTINUE_STRAIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/CONTINUE_STRAIGHT.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/DEPART.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/DEPART.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/FORK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/FORK.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/POINTER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/POINTER.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_EXIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_EXIT.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_EXIT_INVERTED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_EXIT_INVERTED.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_LEFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_LEFT.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_LEFT_INVERTED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_LEFT_INVERTED.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_RIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_RIGHT.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_RIGHT_INVERTED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_RIGHT_INVERTED.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_SHARP_LEFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_SHARP_LEFT.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_SHARP_LEFT_INVERTED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_SHARP_LEFT_INVERTED.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_SHARP_RIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_SHARP_RIGHT.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_SHARP_RIGHT_INVERTED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_SHARP_RIGHT_INVERTED.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_SLIGHT_LEFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_SLIGHT_LEFT.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_SLIGHT_LEFT_INVERTED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_SLIGHT_LEFT_INVERTED.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_SLIGHT_RIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_SLIGHT_RIGHT.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_SLIGHT_RIGHT_INVERTED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_SLIGHT_RIGHT_INVERTED.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_STRAIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_STRAIGHT.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_STRAIGHT_INVERTED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_STRAIGHT_INVERTED.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_TOTAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_TOTAL.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_TOTAL_INVERTED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/ROTATORY_TOTAL_INVERTED.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/SHARP_LEFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/SHARP_LEFT.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/SHARP_RIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/SHARP_RIGHT.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/SLIGHT_LEFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/SLIGHT_LEFT.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/assets/direction_samples/SLIGHT_RIGHT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/assets/direction_samples/SLIGHT_RIGHT.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/java/com/example/carplay_android/BleScanPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/java/com/example/carplay_android/BleScanPage.java -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/java/com/example/carplay_android/LeDeviceListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/java/com/example/carplay_android/LeDeviceListAdapter.java -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/java/com/example/carplay_android/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/java/com/example/carplay_android/MainActivity.java -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/java/com/example/carplay_android/javabeans/JavaBeanBitmap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/java/com/example/carplay_android/javabeans/JavaBeanBitmap.java -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/java/com/example/carplay_android/javabeans/JavaBeanDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/java/com/example/carplay_android/javabeans/JavaBeanDevice.java -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/java/com/example/carplay_android/javabeans/JavaBeanFilters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/java/com/example/carplay_android/javabeans/JavaBeanFilters.java -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/java/com/example/carplay_android/services/BleService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/java/com/example/carplay_android/services/BleService.java -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/java/com/example/carplay_android/services/NotificationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/java/com/example/carplay_android/services/NotificationService.java -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/java/com/example/carplay_android/utils/BroadcastUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/java/com/example/carplay_android/utils/BroadcastUtils.java -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/java/com/example/carplay_android/utils/DirectionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/java/com/example/carplay_android/utils/DirectionUtils.java -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/java/com/example/carplay_android/utils/ScanBleDeviceUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/java/com/example/carplay_android/utils/ScanBleDeviceUtils.java -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/drawable/button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/drawable/button.xml -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/drawable/little_dot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/drawable/little_dot.xml -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/drawable/status_dot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/drawable/status_dot.xml -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/layout/activity_ble_scan_page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/layout/activity_ble_scan_page.xml -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/layout/device_information.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/layout/device_information.xml -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /CarPlayAndroid/app/src/test/java/com/example/carplay_android/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/app/src/test/java/com/example/carplay_android/ExampleUnitTest.java -------------------------------------------------------------------------------- /CarPlayAndroid/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/build.gradle -------------------------------------------------------------------------------- /CarPlayAndroid/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/gradle.properties -------------------------------------------------------------------------------- /CarPlayAndroid/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /CarPlayAndroid/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /CarPlayAndroid/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/gradlew -------------------------------------------------------------------------------- /CarPlayAndroid/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/gradlew.bat -------------------------------------------------------------------------------- /CarPlayAndroid/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/CarPlayAndroid/settings.gradle -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/README.md -------------------------------------------------------------------------------- /docs/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/docs/1.jpg -------------------------------------------------------------------------------- /docs/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/docs/2.jpg -------------------------------------------------------------------------------- /docs/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/docs/3.jpg -------------------------------------------------------------------------------- /docs/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/docs/4.jpg -------------------------------------------------------------------------------- /docs/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appleshaman/CarPlayBLE/HEAD/docs/5.jpg --------------------------------------------------------------------------------