Create AzertyCompatibility

This commit is contained in:
zeykafx 2018-11-18 19:10:31 +01:00 committed by GitHub
parent 336ad16f82
commit b9a31745da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 0 deletions

25
AzertyCompatibility Normal file
View File

@ -0,0 +1,25 @@
//This base script allows the digispark to perform HID attacks on AZERTY System
#include "DigiKeyboard.h"
void setup() {
//empty
}
void loop() {
DigiKeyboard.delay(2000);
DigiKeyboard.sendKeyStroke(0, MOD_GUI_LEFT);
DigiKeyboard.delay(1000);
DigiKeyboard.print(F("Zindozs pozershell"));
DigiKeyboard.delay(700);
DigiKeyboard.sendKeyStroke(KEY_ENTER);
DigiKeyboard.delay(3000);
DigiKeyboard.print(F("Set=ZinUserLqnguqgeList =LqnguqgeList en=US =Force"));
DigiKeyboard.delay(700);
DigiKeyboard.sendKeyStroke(KEY_ENTER);
DigiKeyboard.delay(1500);
DigiKeyboard.print("exit");
DigiKeyboard.delay(500);
DigiKeyboard.sendKeyStroke(KEY_ENTER);
DigiKeyboard.delay(300);
// Place your script next to this line
for(;;){ /*empty*/ }
}