Hello guys.
I found out that there is no keyboard library for arduino uno.
I need to make arduino push a keyboard letter when i push a button on arduino.
So i thought if i click a button on arduino.
Send "clicked" string from arduino to pc.
Then python script
then click a letter on keyboard.
But i couldnt make that.
int buttonPin = 12;
void setup() {
// put your setup code here, to run once:
pinMode(buttonPin,INPUT_PULLUP);
Serial.begin(9600);
}