This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Simple Teensy Keyboard "Fuzzer" | |
#include <SoftwareSerial.h> | |
#define rxPin 27 | |
#define txPin 0 | |
#define ledPin 6 | |
#define TIME_BETWEEN_KEYS 1000 | |
int REGULAR_KEYS[] = { | |
KEY_A, KEY_B, KEY_C, KEY_D,KEY_E, KEY_F, KEY_G, KEY_H,KEY_I, KEY_J, KEY_K, |
OlderNewer