summaryrefslogtreecommitdiffstats
path: root/tmk_core/protocol/lufa/bluetooth.h
diff options
context:
space:
mode:
authorTravis La Marr <exiva@exiva.net>2017-03-30 05:03:04 +0200
committernielsenz <nielsen.zac@gmail.com>2017-03-31 04:08:15 +0200
commiteedb767279df6c43763cbf37b8fe75cfc224c80c (patch)
tree46b9e67e9c2d9deea01491cb556741ed0d5cfd1e /tmk_core/protocol/lufa/bluetooth.h
parentccbdf90f02067bc37975130ca8c4b26d2497dcf7 (diff)
downloadqmk_firmware-eedb767279df6c43763cbf37b8fe75cfc224c80c.tar.gz
qmk_firmware-eedb767279df6c43763cbf37b8fe75cfc224c80c.tar.xz
Add RN42 Bluetooth module support
Added support for sending HID keycodes over the RN42/reflashed HC05 module. Tested on OS X and iOS.
Diffstat (limited to 'tmk_core/protocol/lufa/bluetooth.h')
-rw-r--r--tmk_core/protocol/lufa/bluetooth.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/tmk_core/protocol/lufa/bluetooth.h b/tmk_core/protocol/lufa/bluetooth.h
index 78ece1cd0..f4b2f6f8b 100644
--- a/tmk_core/protocol/lufa/bluetooth.h
+++ b/tmk_core/protocol/lufa/bluetooth.h
@@ -62,4 +62,18 @@ void bluefruit_serial_send(uint8_t data);
(usage == AC_REFRESH ? 0x0000 : \
(usage == AC_BOOKMARKS ? 0x0000 : 0)))))))))))))))))))
-#endif \ No newline at end of file
+#define CONSUMER2RN42(usage) \
+ (usage == AUDIO_MUTE ? 0x0040 : \
+ (usage == AUDIO_VOL_UP ? 0x0010 : \
+ (usage == AUDIO_VOL_DOWN ? 0x0020 : \
+ (usage == TRANSPORT_NEXT_TRACK ? 0x0100 : \
+ (usage == TRANSPORT_PREV_TRACK ? 0x0200 : \
+ (usage == TRANSPORT_STOP ? 0x0400 : \
+ (usage == TRANSPORT_STOP_EJECT ? 0x0800 : \
+ (usage == TRANSPORT_PLAY_PAUSE ? 0x0080 : \
+ (usage == AL_EMAIL ? 0x0200 : \
+ (usage == AL_LOCAL_BROWSER ? 0x8000 : \
+ (usage == AC_SEARCH ? 0x0400 : \
+ (usage == AC_HOME ? 0x0100 : 0))))))))))))
+
+ #endif