Arduino - 鍵盤登出
當 ARDUINO UNO 上的引腳 2 接地時,此示例使用鍵盤庫將你從計算機上的使用者會話中登出。草圖同時按兩個或三個鍵的順序模擬按鍵,並在短暫延遲後釋放它們。
警告 - 使用 Keyboard.print()
命令時,Arduino 將接管計算機的鍵盤。為確保在使用此功能執行草圖時不會失去對計算機的控制,請在呼叫 Keyboard.print()
之前設定可靠的控制系統。此草圖設計為僅在將引腳拉到地之後傳送鍵盤命令。
需要的元件
你將需要以下元件 -
- 1×麵包板
- 1×Arduino Leonardo,Micro 或 Due board
- 1×按鈕
- 1×跳線
程式
按照電路圖並連線面包板上的元件,如下圖所示。
草圖
在你的計算機上開啟 Arduino IDE 軟體。用 Arduino 語言編碼將控制你的電路。單擊“新建”開啟新的草圖檔案。
對於此示例,你需要使用 Arduino IDE 1.6.7
注 - 你必須在 Arduino 庫檔案中包含鍵盤庫。如以下螢幕截圖所示。
Arduino 程式碼
/*
Keyboard logout
This sketch demonstrates the Keyboard library.
When you connect pin 2 to ground, it performs a logout.
It uses keyboard combinations to do this, as follows:
On Windows, CTRL-ALT-DEL followed by ALT-l
On Ubuntu, CTRL-ALT-DEL, and ENTER
On OSX, CMD-SHIFT-q
To wake: Spacebar.
Circuit:
* Arduino Leonardo or Micro
* wire to connect D2 to ground.
*/
#define OSX 0
#define WINDOWS 1
#define UBUNTU 2
#include "Keyboard.h"
// change this to match your platform:
int platform = WINDOWS;
void setup() {
// make pin 2 an input and turn on the
// pullup resistor so it goes high unless
// connected to ground:
pinMode(2, INPUT_PULLUP);
Keyboard.begin();
}
void loop() {
while (digitalRead(2) == HIGH) {
// do nothing until pin 2 goes low
delay(500);
}
delay(1000);
switch (platform) {
case OSX:
Keyboard.press(KEY_LEFT_GUI);
// Shift-Q logs out:
Keyboard.press(KEY_LEFT_SHIFT);
Keyboard.press('Q');
delay(100);
// enter:
Keyboard.write(KEY_RETURN);
break;
case WINDOWS:
// CTRL-ALT-DEL:
Keyboard.press(KEY_LEFT_CTRL);
Keyboard.press(KEY_LEFT_ALT);
Keyboard.press(KEY_DELETE);
delay(100);
Keyboard.releaseAll();
//ALT-l:
delay(2000);
Keyboard.press(KEY_LEFT_ALT);
Keyboard.press('l');
Keyboard.releaseAll();
break;
case UBUNTU:
// CTRL-ALT-DEL:
Keyboard.press(KEY_LEFT_CTRL);
Keyboard.press(KEY_LEFT_ALT);
Keyboard.press(KEY_DELETE);
delay(1000);
Keyboard.releaseAll();
// Enter to confirm logout:
Keyboard.write(KEY_RETURN);
break;
}
// do nothing:
while (true);
}
Keyboard.releaseAll();
// enter:
Keyboard.write(KEY_RETURN);
break;
case WINDOWS:
// CTRL-ALT-DEL:
Keyboard.press(KEY_LEFT_CTRL);
Keyboard.press(KEY_LEFT_ALT);
Keyboard.press(KEY_DELETE);
delay(100);
Keyboard.releaseAll();
//ALT-l:
delay(2000);
Keyboard.press(KEY_LEFT_ALT);
Keyboard.press('l');
Keyboard.releaseAll();
break;
case UBUNTU:
// CTRL-ALT-DEL:
Keyboard.press(KEY_LEFT_CTRL);
Keyboard.press(KEY_LEFT_ALT);
Keyboard.press(KEY_DELETE);
delay(1000);
Keyboard.releaseAll();
// Enter to confirm logout:
Keyboard.write(KEY_RETURN);
break;
}
// do nothing:
while (true);
}
程式碼注意
在將程式上載到電路板之前,請確保將當前使用的正確 OS 分配給平臺變數。
草圖正在執行時,按下按鈕會將引腳 2 連線到地面,電路板會將登出請求傳送到 USB 連線的 PC。
結果
將引腳 2 連線到地時,它會執行登出操作。
它使用以下鍵盤組合登出 -
-
在 Windows 上,CTRL-ALT-DEL後跟ALT-l
-
在 Ubuntu 上,CTRL-ALT-DEL和ENTER
-
在 OSX 上,CMD-SHIFT-q