Create WiFi_Info_Display.ino
This commit is contained in:
parent
336ad16f82
commit
55692b6092
|
@ -0,0 +1,18 @@
|
|||
#include "DigiKeyboard.h"
|
||||
|
||||
void setup() {
|
||||
// don't need to set anything up to use DigiKeyboard
|
||||
}
|
||||
|
||||
void loop() {
|
||||
DigiKeyboard.sendKeyStroke(0);
|
||||
DigiKeyboard.sendKeyStroke(0, MOD_GUI_LEFT);
|
||||
DigiKeyboard.delay(500);
|
||||
DigiKeyboard.println("cmd");
|
||||
DigiKeyboard.delay(1000);
|
||||
DigiKeyboard.sendKeyStroke(KEY_ENTER);
|
||||
DigiKeyboard.delay(500);
|
||||
DigiKeyboard.println("ipconfig");
|
||||
DigiKeyboard.sendKeyStroke(KEY_ENTER);
|
||||
DigiKeyboard.delay(5000);
|
||||
}
|
Loading…
Reference in New Issue