Git Product home page Git Product logo

dashboardkeyboard's Introduction

Dashboard Keyboard

ESP32 implementation for HID over GATT Keyboard and Mouse (Bluetooth Low Energy). Including serial API for external modules (similar to Adafruit EZKey HID).

Credits

This project is hardly ispired by ESP32 Mouse/Keyboard for BLE HID.

Thank you Asterics and Kolban, I owe you a beer!

Control via stdin (make monitor)

For basic mouse and keyboard testing, some Bluettooh HID reports can be triggered via the keyboard when the make monitor console is running (see Espressiv IDF: https://github.com/espressif/esp-idf).

Key Function Description
a Mouse left Move mouse left by 30px
s Mouse down Move mouse down by 30px
d Mouse right Move mouse right by 30px
w Mouse up Move mouse up by 30px
l Click left Mouse click right
r Click right Mouse click left
q Type 'y' just for testing keyboard reports

Control via 2nd UART

This interface is primarily used to control mouse / keyboard activities via an external microcontroller. Each command is started with a '$' character, followed by a command name (uppercase letters) and a variable number of parameters. A command must be terminated by a '\n' character (LF, ASCII value 10)!

Command Function Parameters Description
ID Get ID -- Prints out the ID of this module (firmware version number)
GP Get BLE pairings -- Prints out all paired devices' MAC adress. The order is used for DP as well, starting with 0
DP Delete one pairing number of pairing, given as ASCII-characer '0'-'9' Deletes one pairing. The pairing number is determined by the command GP
PM Set pairing mode '0' / '1' Enables (1) or disables (0) discovery/advertising and terminates an exisiting connection if enabled
NAME Set BLE device name name as ASCII string Set the device name to the given name. Restart required.
M Mouse control 4 ASCII-integer values (seperated by space or comma) Issue a mouse HID report, parameter description is below
KA Keyboard, release all -- Releases all keys & modifiers and sends a HID report
KH Keyboard, key hold keycode as ASCII integer value Adds this keycode to the 6 available key slots and sends a HID report.
KR Keyboard, key release keycode as ASCII integer value Removes this keycode from the 6 available key slots and sends a HID report.
KL Keyboard, set layout/locale locale code as ASCII integer value Set the keyboard layout to the given locale number (see below), stored permanently. Restarting required.
KW Keyboard write text n Bytes Write a text via the keyboard. Supported are ASCII as well as UTF8 character streams.
KC Keyboard get keycode for character 2 Bytes Get a corresponding keycode for the given character. 2 Bytes are parsed for UTF8, if there is only a ASCII character, use the first sent byte only.

Mouse command

Command byte Param1 Param2 Param3 Param4
'M' uint8 buttons int8 X int8 Y int8 scroll wheel

Mouse buttons are encoded as bit values in the parameter 'buttons' as follows: (1<<0): Left mouse button (1<<1): Right mouse button (1<<2): Middle mouse button

Example: "M 3 10 -10 0"

Due to this encoding in a bitmask, more than one button might be sent in one command. Releasing the mouse buttons is done via setting the corresponding bit postition to zero and sending the mouse command again.

Keyboard layouts/locales

Number Layout
0x00/0 US English (no Unicode)
0x01/1 US International
0x02/2 German
0x03/3 German Mac
0x04/4 Canadian (French)
0x05/5 Canadian (Multilingual)
0x06/6 United Kingdom
0x07/7 Finnish
0x08/8 French
0x09/9 Danish
0x0A/10 Norwegian
0x0B/11 Swedish
0x0C/12 Spanish
0x0D/13 Portuguese
0x0E/14 Italian
0x0F/15 Portuguese (Brazilian)
0x10/16 Belgian (French)
0x11/17 German (Switzerland)
0x12/18 French (Switzerland)
0x13/19 Spanish (Latin America)
0x14/20 Irish
0x15/21 Icelandic
0x16/22 Turkish
0x17/23 Czech
0x18/24 Serbian (Latin only)

Setting a keyboard locale is done with the "KL" command. Changes taking effect after a restart of the ESP32. This is necessary for initializing the HID country code accordingly.

Team

Edimar Calebe Castanho
Edimar Calebe Castanho (Calebe94)

License

All software is covered under MIT License.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.