VUSB Questions

For Adafruit customers who seek help with microcontrollers

Moderators: adafruit_support_bill, adafruit

Please be positive and constructive with your questions and comments.
Locked
imagiro1
 
Posts: 8
Joined: Sun Jan 13, 2013 12:14 pm

VUSB Questions

Post by imagiro1 »

I have built the a circuit and compiled a simple keyboard code on an ATmega168. I hope somebody has some experience and can help me out. I've posted in the VUSB forum yesterday. But ever since codeandlife inspired so many people, it looks like their forum has been flooded with questions like mine.
1. How do I use the modifier keys? For example, I want to send Win+L to lock the screen. Here is part of the code I currently have for setting up keys.

case '@':
keyboard_report.modifier = _BV(1); // hold shift
keyboard_report.keycode[0] = 29 + 2;
break;

What would I put instead of the @ and where do I find the equivalent of "hold shift"
2. Is it possible to send a string? The example I am working with only sends one letter at a time. I could put the chars in an array, but I was hoping I could use a string. Is there an example for this?

Thanks in advance.

Locked
Please be positive and constructive with your questions and comments.

Return to “Microcontrollers”