This file contains 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 <WiFi.h> | |
#include <WebServer.h> | |
#include <uri/UriRegex.h> | |
#include <BleConnectionStatus.h> | |
#include <BleCompositeHID.h> | |
#include <XboxGamepadDevice.h> | |
XboxGamepadDevice *gamepad; | |
BleCompositeHID compositeHID("Xbox Controller", "Microsoft Corp.", 100); |
This file contains 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 asyncio | |
import websockets | |
import json | |
import requests | |
import os | |
from collections import Counter | |
import re | |
from dotenv import load_dotenv | |
load_dotenv() |
OlderNewer