Keyboard Emulation (HID) how to send apps-key?

I'm using a Sparkfun Pro-Micro as a keyboard to send key sequences to the PC. I want to send the 'apps-key' (Not all keyboards have this, usually has a 4 line picture of a menu, also called menu key, or context menu, does very similar to mouse right-click.) I've looked in keyboard.h can't find it there, tried KEY_LEFT_GUI = Windows key.

Does anyone know? Thanks.

To send the app key by using the Sparkfun Pro-Micro as a keyboard. you can use keyboard as a library in Arduino.

Yes, but what code? e.g. Keyboard.write(KEY_BACKSPACE); sends backspace, but exactly how do I send the apps-key?

Yes, I've looked at that and tried most/all. Which code will make apps-key? ...
Alright, I should have checked that I had the latest version of the keyboard library. Now I have:
#define KEY_MENU 0xED - and it works. Thanks for your comments.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.