├── .gitattributes ├── .github └── workflows │ ├── compile.yml │ └── dev_compile.yml ├── .gitignore ├── Bluetooth └── applejuice.h ├── Defines.h ├── Display.h ├── Dockerfile ├── IMAGESMatrix.h ├── IR ├── IR_AH.h ├── IR_AH_Remotes.h ├── WORLD_IR_CODES.h ├── ir_read.cpp ├── ir_read.h └── tvbg.h ├── IR_AH_Remotes ├── IRReceiverPinout.jpg ├── IR_AH_Remotes.h └── README.md ├── Images ├── 8-Fbh1fhO7VZBmxlJ.png ├── IMAGE1.png ├── IMAGE2.png ├── IMAGE3.png ├── IMAGE4.png ├── IMAGE5.png └── Images.txt ├── LICENSE ├── MFRC522_I2C.cpp ├── MFRC522_I2C.h ├── README.md ├── Shark.png ├── Wifi ├── deauth.h ├── portal.h └── wifispam.h ├── configs ├── .env.M5Cardputer ├── .env.M5StickC ├── .env.M5StickCPlus └── .env.M5StickCPlus2 ├── deauth_prerequisites ├── README.md ├── install-prerequisites.bat ├── install-prerequisites_MAC.sh └── install_prerequisites_Linux.sh ├── desktop.ini ├── globalfunc.h ├── localization.h ├── m5stick-shark.ino ├── package_m5stack_index.json ├── scripts ├── compile.sh ├── docker-build.sh ├── entrypoint.sh └── flash.sh ├── sdfunc.h └── songs.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/.github/workflows/compile.yml -------------------------------------------------------------------------------- /.github/workflows/dev_compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/.github/workflows/dev_compile.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/.gitignore -------------------------------------------------------------------------------- /Bluetooth/applejuice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/Bluetooth/applejuice.h -------------------------------------------------------------------------------- /Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/Defines.h -------------------------------------------------------------------------------- /Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/Display.h -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/Dockerfile -------------------------------------------------------------------------------- /IMAGESMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/IMAGESMatrix.h -------------------------------------------------------------------------------- /IR/IR_AH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/IR/IR_AH.h -------------------------------------------------------------------------------- /IR/IR_AH_Remotes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/IR/IR_AH_Remotes.h -------------------------------------------------------------------------------- /IR/WORLD_IR_CODES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/IR/WORLD_IR_CODES.h -------------------------------------------------------------------------------- /IR/ir_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/IR/ir_read.cpp -------------------------------------------------------------------------------- /IR/ir_read.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/IR/ir_read.h -------------------------------------------------------------------------------- /IR/tvbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/IR/tvbg.h -------------------------------------------------------------------------------- /IR_AH_Remotes/IRReceiverPinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/IR_AH_Remotes/IRReceiverPinout.jpg -------------------------------------------------------------------------------- /IR_AH_Remotes/IR_AH_Remotes.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IR_AH_Remotes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/IR_AH_Remotes/README.md -------------------------------------------------------------------------------- /Images/8-Fbh1fhO7VZBmxlJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/Images/8-Fbh1fhO7VZBmxlJ.png -------------------------------------------------------------------------------- /Images/IMAGE1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/Images/IMAGE1.png -------------------------------------------------------------------------------- /Images/IMAGE2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/Images/IMAGE2.png -------------------------------------------------------------------------------- /Images/IMAGE3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/Images/IMAGE3.png -------------------------------------------------------------------------------- /Images/IMAGE4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/Images/IMAGE4.png -------------------------------------------------------------------------------- /Images/IMAGE5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/Images/IMAGE5.png -------------------------------------------------------------------------------- /Images/Images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/Images/Images.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/LICENSE -------------------------------------------------------------------------------- /MFRC522_I2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/MFRC522_I2C.cpp -------------------------------------------------------------------------------- /MFRC522_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/MFRC522_I2C.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/README.md -------------------------------------------------------------------------------- /Shark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/Shark.png -------------------------------------------------------------------------------- /Wifi/deauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/Wifi/deauth.h -------------------------------------------------------------------------------- /Wifi/portal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/Wifi/portal.h -------------------------------------------------------------------------------- /Wifi/wifispam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/Wifi/wifispam.h -------------------------------------------------------------------------------- /configs/.env.M5Cardputer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/configs/.env.M5Cardputer -------------------------------------------------------------------------------- /configs/.env.M5StickC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/configs/.env.M5StickC -------------------------------------------------------------------------------- /configs/.env.M5StickCPlus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/configs/.env.M5StickCPlus -------------------------------------------------------------------------------- /configs/.env.M5StickCPlus2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/configs/.env.M5StickCPlus2 -------------------------------------------------------------------------------- /deauth_prerequisites/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/deauth_prerequisites/README.md -------------------------------------------------------------------------------- /deauth_prerequisites/install-prerequisites.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/deauth_prerequisites/install-prerequisites.bat -------------------------------------------------------------------------------- /deauth_prerequisites/install-prerequisites_MAC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/deauth_prerequisites/install-prerequisites_MAC.sh -------------------------------------------------------------------------------- /deauth_prerequisites/install_prerequisites_Linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/deauth_prerequisites/install_prerequisites_Linux.sh -------------------------------------------------------------------------------- /desktop.ini: -------------------------------------------------------------------------------- 1 | [ViewState] 2 | Mode= 3 | Vid= 4 | FolderType=Generic 5 | -------------------------------------------------------------------------------- /globalfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/globalfunc.h -------------------------------------------------------------------------------- /localization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/localization.h -------------------------------------------------------------------------------- /m5stick-shark.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/m5stick-shark.ino -------------------------------------------------------------------------------- /package_m5stack_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/package_m5stack_index.json -------------------------------------------------------------------------------- /scripts/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/scripts/compile.sh -------------------------------------------------------------------------------- /scripts/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/scripts/docker-build.sh -------------------------------------------------------------------------------- /scripts/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/scripts/entrypoint.sh -------------------------------------------------------------------------------- /scripts/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/scripts/flash.sh -------------------------------------------------------------------------------- /sdfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/sdfunc.h -------------------------------------------------------------------------------- /songs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AH2005NA/m5stick-shark/HEAD/songs.h --------------------------------------------------------------------------------