AAC Keys does not convert my serial code in a keyboard command?

Hi,

I have troubles getting my AAC Keys to work.
When I send some serial characters to my mac, the code will just be written on a text editor for example.
But AAC Keys is not converting it in a keyboard command like it should.
I looked through the help docs but I might understand something wrong...

That's my code to just send a return command:

Serial.print("<esc>,return.");

Do I have to convert my characters somehow?

Greets
Max

You need an 'escape character' (ASCII 27), not the text "".

Serial.print(27, BYTE);
Serial.print(",return.");

Thank you very much!
Thought it would be something like that..

how I can use combine : ctrl, alt and escape?

Gregory

Did you try ",combine,ctrl,alt,escape."?

This third party document covers the GIDEI protocol: http://trace.wisc.edu/docs/gidei/gidei_sh.htm

Hello

How i can use keys combine:

alt + ctrl + delete

??

Gregory

ok, thx !!!!!

I try :

combine
used to type one to five keys "simultaneously".
, combine , ctrl , alt , del .

Serial.write(27);
Serial.print(",combine,ctrl,alt,del.");

but it do not work :frowning: