View obk_mouse.ino
This file contains 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
//------------------------------------------ | |
// マウスカーソルを高速で動かせるキーボード | |
// ※キーを押すたびにカーソル移動ON/OFFが可能 | |
// https://www.one-button-key.com/ | |
//------------------------------------------ | |
#include "Mouse.h" | |
#define PIN_KEYSW (9) | |
int prevKeyState; |
View obk_double_push.ino
This file contains 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
//-------------------------------------------------- | |
// キースイッチを押す回数によって動作が変えられるキーボード | |
// 1回押し:コピー(ctrl + c) | |
// 2回押し:ペースト(ctrl + v) | |
// 3回押し:カット(ctrl + x) | |
// | |
// https://www.one-button-key.com/ | |
//-------------------------------------------------- | |
#include "Keyboard.h" |
View obk_shutdown.ino
This file contains 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
//------------------------------------------------------------- | |
// シャットダウン専用キーボード | |
// https://www.one-button-key.com/ | |
// | |
// ※"HID-Project" というライブラリが必要です。 | |
// ※Arduino IDE のライブラリマネージャからインストールできます。 | |
//------------------------------------------------------------- | |
#include <HID-Project.h> | |
#define PIN_KEYSW (9) |
View obk_www.ino
This file contains 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
//------------------------------------ | |
// 押すたびに草wが生えるキーボード | |
// https://www.one-button-key.com/ | |
//------------------------------------ | |
#include "Keyboard.h" | |
#define PIN_KEYSW (9) | |
int prevKeyState; | |
int currKeyState; |
View obk_snip.ino
This file contains 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
//------------------------------------ | |
// 範囲指定スクリーンショット キーボード | |
// https://www.one-button-key.com/ | |
//------------------------------------ | |
#define WIN // ※Macの場合はdefineをコメントアウトして下さい | |
#include "Keyboard.h" | |
#define PIN_KEYSW (9) | |
int prevKeyState; |
View obk_paste_without_formatting.ino
This file contains 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
//------------------------------------ | |
// 書式なし貼り付けキーボード Mac用 | |
// (command + shift + option + v) | |
// https://www.one-button-key.com/ | |
//------------------------------------ | |
#include "Keyboard.h" | |
#define PIN_KEYSW (9) | |
int prevKeyState; |
View obk_ctl-alt-del.ino
This file contains 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
//------------------------------------ | |
// 画面をサッと隠せるキーボード Win用 | |
// (Ctl + Alt + Del) | |
// https://www.one-button-key.com/ | |
//------------------------------------ | |
#include "Keyboard.h" | |
#define PIN_KEYSW (9) | |
int prevKeyState; |
View obk_pi.ino
This file contains 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
//------------------------------------ | |
// 円周率入力専用キーボード | |
// https://www.one-button-key.com/ | |
//------------------------------------ | |
#include "Keyboard.h" | |
#include <avr/pgmspace.h> | |
#define PIN_KEYSW (9) | |
int prevKeyState; |
View obk_omikuji.ino
This file contains 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
//------------------------------------ | |
// おみくじキーボード | |
// ※日本語入力ONの状態でキーを押すこと | |
// https://www.one-button-key.com/ | |
//------------------------------------ | |
#include "Keyboard.h" | |
#define PIN_KEYSW (9) | |
int prevKeyState; |
View obk_oraoraora.ino
This file contains 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
//------------------------------------ | |
// オラオラオラオラ キーボード | |
// ※日本語入力ONの状態でキーを押すこと | |
// https://www.one-button-key.com/ | |
//------------------------------------ | |
#include "Keyboard.h" | |
#define PIN_KEYSW (9) | |
int prevKeyState; |
NewerOlder