Skip to content

Instantly share code, notes, and snippets.

@tokyoff
tokyoff / obk_oraoraora.ino
Last active August 24, 2019 11:10
オラオラオラオラ... とひたすら入力できるワンボタンキーボード用ソースコード
//------------------------------------
// オラオラオラオラ キーボード
// ※日本語入力ONの状態でキーを押すこと
// https://www.one-button-key.com/
//------------------------------------
#include "Keyboard.h"
#define PIN_KEYSW (9)
int prevKeyState;
@tokyoff
tokyoff / obk_long_press.ino
Last active August 24, 2019 11:09
長押し(キーを押している間入力し続ける)に対応したワンボタンキーボード用ソースコード
//------------------------------------
// ワンボタンキーボード 長押し対応版
// https://www.one-button-key.com/
//------------------------------------
#include "Keyboard.h"
#define PIN_KEYSW (9)
int prevKeyState;
int currKeyState;