├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── README.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Additional context** 27 | Add any other context about the problem here. 28 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Additional context** 17 | Add any other context or screenshots about the feature request here. 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Serverless Bluetooth Keyboard & Mouse for Android Devices 2 | Turn your Android device into a Bluetooth Remote Keyboard and Mouse! 3 | 4 | ![screenshot 1](https://lh3.googleusercontent.com/pUxM_W-zoH9iBo1shQlFz0T68wZ-9x7SViCvKIZCGh5ECTcsKJg0qLnVfRMk3gxzBOA0VqndRq9LzQngTG8YCw) 5 | 6 | ## Description 7 | No additional software is required to use the app, just a device with Bluetooth support! 8 | 9 | With Blek you can use your Android device as a remote keyboard and mouse for your Smartphone, Tablet, Computer or Android TV. 10 | 11 | ## Features 12 | 13 | * Turn your smartphone into a touch pad with scrolling support 14 | * Use any keyboard app to type text on the remote device 15 | * Support for 32 different keyboard language layouts 16 | * Turn your phone into an movement based Air mouse 17 | * Use speech input and send copied text to connected devices 18 | 19 | ## Supported Devices 20 | 21 | The Receiver Device must have Bluetooth 4.0 and: 22 | 23 | * Android 4.4 or higher 24 | * Apple iOS 9 or higher (only Keyboard supported) 25 | * Windows 8 or higher 26 | * Windows Phone 8.1 Update 2 or higher 27 | * Chromebook Chrome OS 28 | 29 | ## Installation 30 | 31 | ### On Google Play 32 | * [Premium](https://play.google.com/store/apps/details?id=io.appground.blekpremium) 33 | * [Free](https://play.google.com/store/apps/details?id=io.appground.blek) 34 | 35 | ## Issues and Feature Requests 36 | 37 | ### On GitHub 38 | * [Support Forum](https://github.com/AppGround-io/bluetooth-keyboard-and-mouse-support/discussions) 39 | 40 | ## Screenshots 41 | 42 | ![screenshot 2](https://lh3.googleusercontent.com/y6E_5ytt1rR-SFZ534YXiHKNjLba0DryO4QUfaXxOg_1irE_wDAh3f1zIoHhBGdQXPPCOU4IClN40dIuwkGvKHwC) 43 | 44 | _ 45 | 46 | ![screenshot 3](https://lh3.googleusercontent.com/Ouy625KJFBcWNbXW3uOq0EgnBSpdpdhmy9-UTjIJua94udlNZkKffiQnxLRmMdWUDWIwn7tCnO0J9db1uCyKiFo) 47 | 48 | _ 49 | 50 | ![screenshot 4](https://lh3.googleusercontent.com/sdh-OXPZORzSLQdc0C__aKs7W5AchdIhIgR_Fuir2WNAbK638l6ijXv5xD2xfQ9RHIHx0gACHIWqqjtkkLa-bA) 51 | 52 | _ 53 | 54 | ![screenshot 5](https://lh3.googleusercontent.com/eQ2vwLZfv3_xgw7C1Z21oiDAy8RketflaBalx80E6IR76l41v2kxogXi_MxoNAVPWT0ZrkVAYfvxLenum8-4Jsmr) 55 | --------------------------------------------------------------------------------