我如何从Arduino写入CMD?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我如何从Arduino写入CMD?相关的知识,希望对你有一定的参考价值。

我需要从Arduino发送一些要在cmd上打印的语法。

语法应该是以下行:

"bartend.exe /F=C:UsersfenigerDesktopBarTenderFilesPSLableV03.btw /P"

谢谢你,亚伦

答案

这需要您通过Arduino模拟键盘。为此,最简单的方法是使用Arduino Leonardo或Arduino Leonardo Pro Micro。有了这个,你可以输入任何字符串到任何地方,终端,文本编辑器等

如果您无法找到这些主板,请使用Atmega32u4控制器搜索Arduino。 Atmega32u4控制具有USB功能,可以解决您的问题。

对于Windows cmd,您可以使用以下代码打开命令提示符并自动键入所需的命令。

#include "Keyboard.h"

void setup() {
    // initialize control over the keyboard:
    Keyboard.begin();

    // first open run by windows + r
    Keyboard.press(KEY_LEFT_GUI);
    Keyboard.press('r');
    Keyboard.releaseAll();

    // adjust delay according to your requierment
    delay(4000);

    // press enter to open cmd
    Keyboard.press(KEY_RETURN);
    Keyboard.releaseAll();

    // adjust delay according to your requierment
    delay(4000);

    // commond to be entered
    char* cmd = "bartend.exe /F=C:UsersfenigerDesktopBarTenderFilesPSLableV03.btw /P";
    // print command to cmd
    Keyboard.print(cmd);
    delay(50);

    // press enter to run cmd
    Keyboard.press(KEY_RETURN);
    Keyboard.releaseAll();
}

void loop() {

}

以上是关于我如何从Arduino写入CMD?的主要内容,如果未能解决你的问题,请参考以下文章

从 Arduino 将新数据写入 Python 中的 csv 文件

使用 Python 从 Arduino 读取字节

从 Android Studio 中的片段将数据写入 Firebase

无法使用 qtserial 将数据写入 Arduino

如何将这个 Objective-C 代码片段写入 Swift?

如何从 Runtime.exec 创建的 cmd 会话写入 Unix 终端?