├── .gitignore ├── .idea ├── .name ├── codeStyles │ └── Project.xml ├── compiler.xml ├── jarRepositories.xml └── misc.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── libs │ └── antpluginlib_3-8-0.aar ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── idv │ │ └── markkuo │ │ └── cscblebridge │ │ ├── LaunchActivity.kt │ │ ├── MainFragment.kt │ │ ├── antrecyclerview │ │ ├── AntDeviceRecyclerViewAdapter.kt │ │ ├── AntDeviceView.kt │ │ ├── AntDeviceViewHolder.kt │ │ └── BroadcastButtonView.kt │ │ └── service │ │ ├── AntToBleBridge.kt │ │ ├── MainService.kt │ │ ├── ant │ │ ├── AntDevice.kt │ │ ├── AntDeviceConnector.kt │ │ ├── BcConnector.kt │ │ ├── BsdConnector.kt │ │ ├── HRConnector.kt │ │ └── SSConnector.kt │ │ └── ble │ │ ├── BleServer.kt │ │ └── BleServiceType.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── ic_baseline_bluetooth_24.xml │ └── ic_baseline_stop_24.xml │ ├── layout │ ├── activity_launch.xml │ ├── ant_list_item.xml │ ├── broadcast_view.xml │ └── fragment_main.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshots ├── screenshot_1.jpg ├── screenshot_2.jpg ├── screenshot_3.jpg └── screenshot_v1.3.jpg └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | CSC BLE Bridge -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/libs/antpluginlib_3-8-0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/libs/antpluginlib_3-8-0.aar -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/idv/markkuo/cscblebridge/LaunchActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/java/idv/markkuo/cscblebridge/LaunchActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/idv/markkuo/cscblebridge/MainFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/java/idv/markkuo/cscblebridge/MainFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/idv/markkuo/cscblebridge/antrecyclerview/AntDeviceRecyclerViewAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/java/idv/markkuo/cscblebridge/antrecyclerview/AntDeviceRecyclerViewAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/idv/markkuo/cscblebridge/antrecyclerview/AntDeviceView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/java/idv/markkuo/cscblebridge/antrecyclerview/AntDeviceView.kt -------------------------------------------------------------------------------- /app/src/main/java/idv/markkuo/cscblebridge/antrecyclerview/AntDeviceViewHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/java/idv/markkuo/cscblebridge/antrecyclerview/AntDeviceViewHolder.kt -------------------------------------------------------------------------------- /app/src/main/java/idv/markkuo/cscblebridge/antrecyclerview/BroadcastButtonView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/java/idv/markkuo/cscblebridge/antrecyclerview/BroadcastButtonView.kt -------------------------------------------------------------------------------- /app/src/main/java/idv/markkuo/cscblebridge/service/AntToBleBridge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/java/idv/markkuo/cscblebridge/service/AntToBleBridge.kt -------------------------------------------------------------------------------- /app/src/main/java/idv/markkuo/cscblebridge/service/MainService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/java/idv/markkuo/cscblebridge/service/MainService.kt -------------------------------------------------------------------------------- /app/src/main/java/idv/markkuo/cscblebridge/service/ant/AntDevice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/java/idv/markkuo/cscblebridge/service/ant/AntDevice.kt -------------------------------------------------------------------------------- /app/src/main/java/idv/markkuo/cscblebridge/service/ant/AntDeviceConnector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/java/idv/markkuo/cscblebridge/service/ant/AntDeviceConnector.kt -------------------------------------------------------------------------------- /app/src/main/java/idv/markkuo/cscblebridge/service/ant/BcConnector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/java/idv/markkuo/cscblebridge/service/ant/BcConnector.kt -------------------------------------------------------------------------------- /app/src/main/java/idv/markkuo/cscblebridge/service/ant/BsdConnector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/java/idv/markkuo/cscblebridge/service/ant/BsdConnector.kt -------------------------------------------------------------------------------- /app/src/main/java/idv/markkuo/cscblebridge/service/ant/HRConnector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/java/idv/markkuo/cscblebridge/service/ant/HRConnector.kt -------------------------------------------------------------------------------- /app/src/main/java/idv/markkuo/cscblebridge/service/ant/SSConnector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/java/idv/markkuo/cscblebridge/service/ant/SSConnector.kt -------------------------------------------------------------------------------- /app/src/main/java/idv/markkuo/cscblebridge/service/ble/BleServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/java/idv/markkuo/cscblebridge/service/ble/BleServer.kt -------------------------------------------------------------------------------- /app/src/main/java/idv/markkuo/cscblebridge/service/ble/BleServiceType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/java/idv/markkuo/cscblebridge/service/ble/BleServiceType.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_bluetooth_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/drawable/ic_baseline_bluetooth_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_stop_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/drawable/ic_baseline_stop_24.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/layout/activity_launch.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/ant_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/layout/ant_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/broadcast_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/layout/broadcast_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/layout/fragment_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screenshots/screenshot_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/screenshots/screenshot_1.jpg -------------------------------------------------------------------------------- /screenshots/screenshot_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/screenshots/screenshot_2.jpg -------------------------------------------------------------------------------- /screenshots/screenshot_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/screenshots/screenshot_3.jpg -------------------------------------------------------------------------------- /screenshots/screenshot_v1.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starryalley/CSC_BLE_Bridge/HEAD/screenshots/screenshot_v1.3.jpg -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name='CSC BLE Bridge' 2 | include ':app' 3 | --------------------------------------------------------------------------------