Hi,
I have Digispark Attiny85 USB,
I need to unlock my computer by connecting the Digispark with my own password.
I wrote below program in Ardunio, but the output is not stopping, Its keepon sending the text to my computer.
Please give me a program for one time Text transfer
#include "DigiKeyboard.h"
void setup() {
}
void loop() {
DigiKeyboard.sendKeyStroke(0);
DigiKeyboard.print("My Password");
DigiKeyboard.delay(5000);
}