├── .directory ├── LICENSE ├── README.md ├── ScreenShot ├── Client_0.png ├── Client_1.png ├── Client_2.png ├── Client_3.png ├── Server_1.png ├── Server_2.png └── Server_3.png ├── android ├── WirelessHid.iml ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── libs │ │ └── protobuf-java-2.6.1.jar │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── baniel │ │ │ └── wirelesshid │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── baniel │ │ │ │ └── wirelesshid │ │ │ │ ├── Constant.java │ │ │ │ ├── Key.java │ │ │ │ ├── Keyboard.java │ │ │ │ ├── KeyboardFragment.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MouseFragment.java │ │ │ │ ├── WirelessHid.proto │ │ │ │ ├── WirelessHidProto.java │ │ │ │ └── WirelessHidService.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── fragment_mouse.xml │ │ │ ├── keyboard_fragment.xml │ │ │ └── numeric_keyboard.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ ├── navigation_keyboard.xml │ │ │ ├── numeric_keyboard.xml │ │ │ └── qwerty_keyboard.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── baniel │ │ └── wirelesshid │ │ └── ExampleUnitTest.java ├── build.gradle ├── build │ └── generated │ │ └── mockable-android-23.jar ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties ├── server.iml └── settings.gradle ├── bin ├── WirelessHid.apk └── WirelessHidServer.jar └── pc ├── lib └── protobuf-java-2.6.1.jar └── src └── com └── baniel └── wirelesshid ├── Constant.java ├── WirelessHidProto.java └── WirelessHidServer.java /.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | PreviewsShown=true 3 | Timestamp=2016,6,28,14,17,22 4 | Version=3 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShot/Client_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/ScreenShot/Client_0.png -------------------------------------------------------------------------------- /ScreenShot/Client_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/ScreenShot/Client_1.png -------------------------------------------------------------------------------- /ScreenShot/Client_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/ScreenShot/Client_2.png -------------------------------------------------------------------------------- /ScreenShot/Client_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/ScreenShot/Client_3.png -------------------------------------------------------------------------------- /ScreenShot/Server_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/ScreenShot/Server_1.png -------------------------------------------------------------------------------- /ScreenShot/Server_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/ScreenShot/Server_2.png -------------------------------------------------------------------------------- /ScreenShot/Server_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/ScreenShot/Server_3.png -------------------------------------------------------------------------------- /android/WirelessHid.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/WirelessHid.iml -------------------------------------------------------------------------------- /android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/app.iml -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/libs/protobuf-java-2.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/libs/protobuf-java-2.6.1.jar -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/androidTest/java/com/baniel/wirelesshid/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/androidTest/java/com/baniel/wirelesshid/ApplicationTest.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/baniel/wirelesshid/Constant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/java/com/baniel/wirelesshid/Constant.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/baniel/wirelesshid/Key.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/java/com/baniel/wirelesshid/Key.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/baniel/wirelesshid/Keyboard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/java/com/baniel/wirelesshid/Keyboard.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/baniel/wirelesshid/KeyboardFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/java/com/baniel/wirelesshid/KeyboardFragment.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/baniel/wirelesshid/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/java/com/baniel/wirelesshid/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/baniel/wirelesshid/MouseFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/java/com/baniel/wirelesshid/MouseFragment.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/baniel/wirelesshid/WirelessHid.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/java/com/baniel/wirelesshid/WirelessHid.proto -------------------------------------------------------------------------------- /android/app/src/main/java/com/baniel/wirelesshid/WirelessHidProto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/java/com/baniel/wirelesshid/WirelessHidProto.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/baniel/wirelesshid/WirelessHidService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/java/com/baniel/wirelesshid/WirelessHidService.java -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/fragment_mouse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/res/layout/fragment_mouse.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/keyboard_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/res/layout/keyboard_fragment.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/numeric_keyboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/res/layout/numeric_keyboard.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/navigation_keyboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/res/xml/navigation_keyboard.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/numeric_keyboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/res/xml/numeric_keyboard.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/qwerty_keyboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/main/res/xml/qwerty_keyboard.xml -------------------------------------------------------------------------------- /android/app/src/test/java/com/baniel/wirelesshid/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/app/src/test/java/com/baniel/wirelesshid/ExampleUnitTest.java -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/build/generated/mockable-android-23.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/build/generated/mockable-android-23.jar -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/local.properties -------------------------------------------------------------------------------- /android/server.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/android/server.iml -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /bin/WirelessHid.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/bin/WirelessHid.apk -------------------------------------------------------------------------------- /bin/WirelessHidServer.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/bin/WirelessHidServer.jar -------------------------------------------------------------------------------- /pc/lib/protobuf-java-2.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/pc/lib/protobuf-java-2.6.1.jar -------------------------------------------------------------------------------- /pc/src/com/baniel/wirelesshid/Constant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/pc/src/com/baniel/wirelesshid/Constant.java -------------------------------------------------------------------------------- /pc/src/com/baniel/wirelesshid/WirelessHidProto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/pc/src/com/baniel/wirelesshid/WirelessHidProto.java -------------------------------------------------------------------------------- /pc/src/com/baniel/wirelesshid/WirelessHidServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreateChance/WirelessHid/HEAD/pc/src/com/baniel/wirelesshid/WirelessHidServer.java --------------------------------------------------------------------------------