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 库文件

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-DELENTER

  • OSX 上CMD-SHIFT-q