gitextract_old4i_09/ ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── 1--error-report.md │ │ ├── 2--question.md │ │ ├── 3--feature-request.md │ │ ├── 4--bug-report.md │ │ └── 5--documentation.md │ ├── ISSUE_TEMPLATE.md │ ├── config.yml │ ├── stale.yml │ └── workflows/ │ └── nightly.yml ├── .gitignore ├── LICENSE ├── README.md ├── Reset_Sketch/ │ ├── README.md │ └── Reset_Sketch.ino ├── arduino-cli.yaml ├── esp8266_deauther/ │ ├── A_config.h │ ├── Accesspoints.cpp │ ├── Accesspoints.h │ ├── Attack.cpp │ ├── Attack.h │ ├── CLI.cpp │ ├── CLI.h │ ├── DisplayUI.cpp │ ├── DisplayUI.h │ ├── EEPROMHelper.h │ ├── Names.cpp │ ├── Names.h │ ├── SSIDs.cpp │ ├── SSIDs.h │ ├── Scan.cpp │ ├── Scan.h │ ├── SimpleList.h │ ├── Stations.cpp │ ├── Stations.h │ ├── debug.h │ ├── esp8266_deauther.ino │ ├── functions.h │ ├── language.h │ ├── led.cpp │ ├── led.h │ ├── oui.h │ ├── settings.cpp │ ├── settings.h │ ├── src/ │ │ ├── Adafruit_DotStar-1.1.4/ │ │ │ ├── Adafruit_DotStar.cpp │ │ │ ├── Adafruit_DotStar.h │ │ │ └── license.txt │ │ ├── Adafruit_NeoPixel-1.7.0/ │ │ │ ├── Adafruit_NeoPixel.cpp │ │ │ ├── Adafruit_NeoPixel.h │ │ │ ├── COPYING │ │ │ └── esp8266.c │ │ ├── ArduinoJson-v5.13.5/ │ │ │ └── ArduinoJson.h │ │ ├── DS3231-1.0.3/ │ │ │ ├── DS3231.cpp │ │ │ ├── DS3231.h │ │ │ └── LICENSE │ │ ├── SimpleButton/ │ │ │ ├── Buttons/ │ │ │ │ ├── AnalogStick.cpp │ │ │ │ ├── AnalogStick.h │ │ │ │ ├── Button.cpp │ │ │ │ ├── Button.h │ │ │ │ ├── ButtonAnalog.cpp │ │ │ │ ├── ButtonAnalog.h │ │ │ │ ├── ButtonGPIOExpander.cpp │ │ │ │ ├── ButtonGPIOExpander.h │ │ │ │ ├── ButtonPullup.cpp │ │ │ │ ├── ButtonPullup.h │ │ │ │ ├── ButtonPullupGPIOExpander.cpp │ │ │ │ ├── ButtonPullupGPIOExpander.h │ │ │ │ ├── PS2Gamepad.cpp │ │ │ │ ├── PS2Gamepad.h │ │ │ │ ├── RotaryEncoder.cpp │ │ │ │ ├── RotaryEncoder.h │ │ │ │ ├── RotaryEncoderI2C.cpp │ │ │ │ ├── RotaryEncoderI2C.h │ │ │ │ ├── Switch.cpp │ │ │ │ └── Switch.h │ │ │ ├── Events/ │ │ │ │ ├── ClickEvent.cpp │ │ │ │ ├── ClickEvent.h │ │ │ │ ├── DoubleclickEvent.cpp │ │ │ │ ├── DoubleclickEvent.h │ │ │ │ ├── Event.cpp │ │ │ │ ├── Event.h │ │ │ │ ├── HoldEvent.cpp │ │ │ │ ├── HoldEvent.h │ │ │ │ ├── PushEvent.cpp │ │ │ │ ├── PushEvent.h │ │ │ │ ├── ReleaseEvent.cpp │ │ │ │ └── ReleaseEvent.h │ │ │ ├── LICENSE │ │ │ ├── SimpleButton.h │ │ │ └── libs/ │ │ │ ├── GPIOExpander.cpp │ │ │ ├── GPIOExpander.h │ │ │ ├── MCP23017.cpp │ │ │ ├── MCP23017.h │ │ │ ├── PCF8574.cpp │ │ │ ├── PCF8574.h │ │ │ ├── PCF8575.cpp │ │ │ └── PCF8575.h │ │ ├── esp8266-oled-ssd1306-4.1.0/ │ │ │ ├── OLEDDisplay.cpp │ │ │ ├── OLEDDisplay.h │ │ │ ├── OLEDDisplayFonts.h │ │ │ ├── OLEDDisplayUi.cpp │ │ │ ├── OLEDDisplayUi.h │ │ │ ├── README.md │ │ │ ├── SH1106.h │ │ │ ├── SH1106Brzo.h │ │ │ ├── SH1106Spi.h │ │ │ ├── SH1106Wire.h │ │ │ ├── SSD1306.h │ │ │ ├── SSD1306Brzo.h │ │ │ ├── SSD1306I2C.h │ │ │ ├── SSD1306Spi.h │ │ │ ├── SSD1306Wire.h │ │ │ └── license │ │ └── my92xx-3.0.3/ │ │ ├── LICENSE │ │ ├── my92xx.cpp │ │ └── my92xx.h │ ├── webfiles.h │ ├── wifi.cpp │ └── wifi.h ├── serialcommands.md ├── settings.md ├── utils/ │ ├── arduino-cli-compile.py │ ├── old_web_converter/ │ │ ├── convert_all.sh │ │ ├── converter.html │ │ ├── readme.md │ │ └── style.css │ ├── vendor_list_updater/ │ │ ├── README.md │ │ └── update_manuf.py │ └── web_converter/ │ ├── css_html_js_minify/ │ │ ├── __init__.py │ │ ├── css_minifier.py │ │ ├── html_minifier.py │ │ ├── js_minifier.py │ │ ├── minify.py │ │ └── variables.py │ ├── readme.md │ └── webConverter.py └── web_interface/ ├── attack.html ├── attack.json ├── index.html ├── info.html ├── js/ │ ├── attack.js │ ├── scan.js │ ├── settings.js │ ├── site.js │ └── ssids.js ├── lang/ │ ├── cn.lang │ ├── cs.lang │ ├── da.lang │ ├── de.lang │ ├── en.lang │ ├── es.lang │ ├── fi.lang │ ├── fr.lang │ ├── hu.lang │ ├── in.lang │ ├── it.lang │ ├── ja.lang │ ├── ko.lang │ ├── nl.lang │ ├── pl.lang │ ├── ptbr.lang │ ├── ro.lang │ ├── ru.lang │ ├── th.lang │ ├── tlh.lang │ └── uk.lang ├── names.json ├── run ├── scan.html ├── scan.json ├── settings.html ├── settings.json ├── ssids.html ├── ssids.json └── style.css