Skip to content

adnan-alhomssi/DigistumpArduinoDe

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 

Repository files navigation

DigistumpArduino - Germanized Keyboard Library

This fork adds only a single file to enable DigiKeyboard usage for keyboards with german layout

//This the important part, include the De suffixed version instead of the normal one and the rest goes same as the original lib.
#include "DigiKeyboardDe.h"

void setup() {
  // don't need to set anything up to use DigiKeyboard
}


void loop() {
  // this is generally not necessary but with some older systems it seems to
  // prevent missing the first character after a delay:
  DigiKeyboardDe.sendKeyStroke(0);
  
  DigiKeyboardDe.println("Hello XYZ !\"§$%&/()=? [] {}!");
  // It's better to use DigiKeyboard.delay() over the regular Arduino delay()
  // if doing keyboard stuff because it keeps talking to the computer to make
  // sure the computer knows the keyboard is alive and connected
  DigiKeyboard.delay(5000);
}

About

Digistump library with german keyboard layout support

Resources

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • C 81.7%
  • C++ 9.1%
  • Assembly 3.3%
  • Other 2.1%
  • Processing 1.4%
  • SourcePawn 1.0%
  • Other 1.4%