This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import hashlib | |
import requests | |
import base64 | |
from urllib import parse | |
import re | |
class ArcRouter: | |
SCHEME = "http" | |
BASE_HEADERS = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "Keyboard.h" | |
#include "EEPROM.h" | |
#define KEYPRESS_DELAY 1 //msec | |
class DKeyboard{ | |
private: | |
int keypressDelay = KEYPRESS_DELAY; | |
public: |