arduino의 usb device
개요
arduino leonardo에서 usb 키보드, usb 마우스를 에뮬레이트 해 보았다.
사진
사진
샘플 코드
void setup()
{
pinMode(8, INPUT_PULLUP);
Serial.begin(115200);
while (!Serial);
Keyboard.begin();
Mouse.begin();
Serial.println("Start");
}
void loop()
{
int x, y;
if (digitalRead(8) == HIGH)
{
//Serial.println("off");
}
else
{
Serial.println("on");
Keyboard.press(KEY_LEFT_GUI);
delay(100);
Keyboard.press('r');
delay(500);
Keyboard.releaseAll();
delay(500);
Keyboard.print("mspaint");
Keyboard.press(KEY_TAB);
Keyboard.press(KEY_RETURN);
delay(500);
Keyboard.releaseAll();
delay(700);
Mouse.press();
for (float r = 0; r <= 3.1415 * 2; r += 0.01)
{
x = sin(5.0 * r) * 5.0;
y = cos(8.0 * r) * 5.0;
Mouse.move(x, y, 0);
delay(10);
}
Mouse.release();
}
delay(100);
}
Reference
이 문제에 관하여(arduino의 usb device), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/ohisama@github/items/c6785825952d1e50a2c5
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
사진
샘플 코드
void setup()
{
pinMode(8, INPUT_PULLUP);
Serial.begin(115200);
while (!Serial);
Keyboard.begin();
Mouse.begin();
Serial.println("Start");
}
void loop()
{
int x, y;
if (digitalRead(8) == HIGH)
{
//Serial.println("off");
}
else
{
Serial.println("on");
Keyboard.press(KEY_LEFT_GUI);
delay(100);
Keyboard.press('r');
delay(500);
Keyboard.releaseAll();
delay(500);
Keyboard.print("mspaint");
Keyboard.press(KEY_TAB);
Keyboard.press(KEY_RETURN);
delay(500);
Keyboard.releaseAll();
delay(700);
Mouse.press();
for (float r = 0; r <= 3.1415 * 2; r += 0.01)
{
x = sin(5.0 * r) * 5.0;
y = cos(8.0 * r) * 5.0;
Mouse.move(x, y, 0);
delay(10);
}
Mouse.release();
}
delay(100);
}
Reference
이 문제에 관하여(arduino의 usb device), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/ohisama@github/items/c6785825952d1e50a2c5
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
void setup()
{
pinMode(8, INPUT_PULLUP);
Serial.begin(115200);
while (!Serial);
Keyboard.begin();
Mouse.begin();
Serial.println("Start");
}
void loop()
{
int x, y;
if (digitalRead(8) == HIGH)
{
//Serial.println("off");
}
else
{
Serial.println("on");
Keyboard.press(KEY_LEFT_GUI);
delay(100);
Keyboard.press('r');
delay(500);
Keyboard.releaseAll();
delay(500);
Keyboard.print("mspaint");
Keyboard.press(KEY_TAB);
Keyboard.press(KEY_RETURN);
delay(500);
Keyboard.releaseAll();
delay(700);
Mouse.press();
for (float r = 0; r <= 3.1415 * 2; r += 0.01)
{
x = sin(5.0 * r) * 5.0;
y = cos(8.0 * r) * 5.0;
Mouse.move(x, y, 0);
delay(10);
}
Mouse.release();
}
delay(100);
}
Reference
이 문제에 관하여(arduino의 usb device), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ohisama@github/items/c6785825952d1e50a2c5텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)