Hello together, i am a newbie and want to ask for help in my topic.
One part of my project is, to switch a Aten KVM Switchbox by the arduino Machine Control.
Therefore i ant to emulate some keyboard hits like "ctrl"+ "F12", than "1", than "Enter"
For this I want to use the USB A port instead of the micro USB programming port.
I am not able to activate the USB A port and configure it as a HID
I read the USB HOST examples and many different posts in the forum, without success.
With the micro USB i can setup the machine control as a HID pretty simple, for example:
USBKeyboard.h
USBKeyboard Keyboard;
using namespace machinecontrol;
Keyboard.key_code(KEY_F12,KEY_CTRL);
delay(200);
Keyboard._putc('1');
delay(200);
Keyboard._putc(0x0A);
delay(200);
can somebody give me a hint for my problem, please?
Thank you very much!!
Greetings Flo