├── .gitignore ├── About.h ├── App.h ├── BbcNews.h ├── BitcoinTracker.h ├── Breakout.h ├── Breakout.ino ├── DemoApp.h ├── Hive.h ├── LichessTv.h ├── Menu.h ├── Octoprint.h ├── Otp.h ├── README.md ├── WifiScan.h ├── apps.h ├── batterycharge.h ├── bbcnewslogo.h ├── bitcoinlogo.h ├── breakoutlogo.h ├── breakoutsplash.h ├── certs.h ├── chesspieces.h ├── config.example.h ├── configuration.h ├── framework32.ino ├── hivelogo.h ├── lichesslogo.h ├── marlinicons.h ├── media └── demo.gif ├── octoprintlogo.h ├── otplogo.h ├── settings.h ├── unknownlogo.h ├── util.h ├── wifiscanlogo.h └── wifisymbols.h /.gitignore: -------------------------------------------------------------------------------- 1 | config.h 2 | -------------------------------------------------------------------------------- /About.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/About.h -------------------------------------------------------------------------------- /App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/App.h -------------------------------------------------------------------------------- /BbcNews.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/BbcNews.h -------------------------------------------------------------------------------- /BitcoinTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/BitcoinTracker.h -------------------------------------------------------------------------------- /Breakout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/Breakout.h -------------------------------------------------------------------------------- /Breakout.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/Breakout.ino -------------------------------------------------------------------------------- /DemoApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/DemoApp.h -------------------------------------------------------------------------------- /Hive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/Hive.h -------------------------------------------------------------------------------- /LichessTv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/LichessTv.h -------------------------------------------------------------------------------- /Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/Menu.h -------------------------------------------------------------------------------- /Octoprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/Octoprint.h -------------------------------------------------------------------------------- /Otp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/Otp.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/README.md -------------------------------------------------------------------------------- /WifiScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/WifiScan.h -------------------------------------------------------------------------------- /apps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/apps.h -------------------------------------------------------------------------------- /batterycharge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/batterycharge.h -------------------------------------------------------------------------------- /bbcnewslogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/bbcnewslogo.h -------------------------------------------------------------------------------- /bitcoinlogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/bitcoinlogo.h -------------------------------------------------------------------------------- /breakoutlogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/breakoutlogo.h -------------------------------------------------------------------------------- /breakoutsplash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/breakoutsplash.h -------------------------------------------------------------------------------- /certs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/certs.h -------------------------------------------------------------------------------- /chesspieces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/chesspieces.h -------------------------------------------------------------------------------- /config.example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/config.example.h -------------------------------------------------------------------------------- /configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/configuration.h -------------------------------------------------------------------------------- /framework32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/framework32.ino -------------------------------------------------------------------------------- /hivelogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/hivelogo.h -------------------------------------------------------------------------------- /lichesslogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/lichesslogo.h -------------------------------------------------------------------------------- /marlinicons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/marlinicons.h -------------------------------------------------------------------------------- /media/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/media/demo.gif -------------------------------------------------------------------------------- /octoprintlogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/octoprintlogo.h -------------------------------------------------------------------------------- /otplogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/otplogo.h -------------------------------------------------------------------------------- /settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/settings.h -------------------------------------------------------------------------------- /unknownlogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/unknownlogo.h -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/util.h -------------------------------------------------------------------------------- /wifiscanlogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/wifiscanlogo.h -------------------------------------------------------------------------------- /wifisymbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/930913/framework32/HEAD/wifisymbols.h --------------------------------------------------------------------------------