├── .gitignore ├── LICENSE ├── Libraries ├── FlickerFreePrint │ ├── Examples │ │ ├── Arduino │ │ │ └── Arduino_9341 │ │ │ │ └── Arduino_9341.ino │ │ └── Teensy │ │ │ └── ILI9341_t3 │ │ │ └── ILI9341_t3.ino │ ├── FFPrint.jpg │ ├── FlickerFreePrint.h │ └── README.md ├── PNGdec │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── 1bpp_transparent_oled │ │ │ ├── 1bpp_transparent_oled.ino │ │ │ └── octocat_1bpp.h │ │ ├── m5stickc_plus_test │ │ │ └── m5logosmall.h │ │ ├── png_benchmark │ │ │ ├── octocat_32bpp.h │ │ │ ├── octocat_4bpp.h │ │ │ ├── octocat_8bpp.h │ │ │ └── png_benchmark.ino │ │ ├── png_transparency │ │ │ ├── octocat_4bpp.h │ │ │ └── png_transparency.ino │ │ └── sdcard_slideshow │ │ │ └── sdcard_slideshow.ino │ ├── library.properties │ ├── linux │ │ ├── Makefile │ │ └── main.cpp │ ├── perf_small.png │ └── src │ │ ├── PNGdec.cpp │ │ ├── PNGdec.h │ │ ├── adler32.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── png.inl │ │ ├── zconf.h │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h ├── TFT_eSPI.zip └── VescUart │ ├── LICENSE │ ├── README.md │ ├── examples │ ├── getVescValues │ │ └── getVescValues.ino │ ├── getVescValuesSoftwareSerial │ │ └── getVescValuesSoftwareSerial.ino │ ├── setCurrent │ │ └── setCurrent.ino │ └── setNunchuckValues │ │ └── setNunchuckValues.ino │ ├── keywords.txt │ ├── library.properties │ └── src │ ├── VescUart.cpp │ ├── VescUart.h │ ├── buffer.cpp │ ├── buffer.h │ ├── crc.cpp │ ├── crc.h │ └── datatypes.h ├── README.md └── SVD ├── 20230924_183032.jpg ├── EEPROMAnything.h ├── SVD.ino └── svd.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/LICENSE -------------------------------------------------------------------------------- /Libraries/FlickerFreePrint/Examples/Arduino/Arduino_9341/Arduino_9341.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/FlickerFreePrint/Examples/Arduino/Arduino_9341/Arduino_9341.ino -------------------------------------------------------------------------------- /Libraries/FlickerFreePrint/Examples/Teensy/ILI9341_t3/ILI9341_t3.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/FlickerFreePrint/Examples/Teensy/ILI9341_t3/ILI9341_t3.ino -------------------------------------------------------------------------------- /Libraries/FlickerFreePrint/FFPrint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/FlickerFreePrint/FFPrint.jpg -------------------------------------------------------------------------------- /Libraries/FlickerFreePrint/FlickerFreePrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/FlickerFreePrint/FlickerFreePrint.h -------------------------------------------------------------------------------- /Libraries/FlickerFreePrint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/FlickerFreePrint/README.md -------------------------------------------------------------------------------- /Libraries/PNGdec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/LICENSE -------------------------------------------------------------------------------- /Libraries/PNGdec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/README.md -------------------------------------------------------------------------------- /Libraries/PNGdec/examples/1bpp_transparent_oled/1bpp_transparent_oled.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/examples/1bpp_transparent_oled/1bpp_transparent_oled.ino -------------------------------------------------------------------------------- /Libraries/PNGdec/examples/1bpp_transparent_oled/octocat_1bpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/examples/1bpp_transparent_oled/octocat_1bpp.h -------------------------------------------------------------------------------- /Libraries/PNGdec/examples/m5stickc_plus_test/m5logosmall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/examples/m5stickc_plus_test/m5logosmall.h -------------------------------------------------------------------------------- /Libraries/PNGdec/examples/png_benchmark/octocat_32bpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/examples/png_benchmark/octocat_32bpp.h -------------------------------------------------------------------------------- /Libraries/PNGdec/examples/png_benchmark/octocat_4bpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/examples/png_benchmark/octocat_4bpp.h -------------------------------------------------------------------------------- /Libraries/PNGdec/examples/png_benchmark/octocat_8bpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/examples/png_benchmark/octocat_8bpp.h -------------------------------------------------------------------------------- /Libraries/PNGdec/examples/png_benchmark/png_benchmark.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/examples/png_benchmark/png_benchmark.ino -------------------------------------------------------------------------------- /Libraries/PNGdec/examples/png_transparency/octocat_4bpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/examples/png_transparency/octocat_4bpp.h -------------------------------------------------------------------------------- /Libraries/PNGdec/examples/png_transparency/png_transparency.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/examples/png_transparency/png_transparency.ino -------------------------------------------------------------------------------- /Libraries/PNGdec/examples/sdcard_slideshow/sdcard_slideshow.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/examples/sdcard_slideshow/sdcard_slideshow.ino -------------------------------------------------------------------------------- /Libraries/PNGdec/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/library.properties -------------------------------------------------------------------------------- /Libraries/PNGdec/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/linux/Makefile -------------------------------------------------------------------------------- /Libraries/PNGdec/linux/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/linux/main.cpp -------------------------------------------------------------------------------- /Libraries/PNGdec/perf_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/perf_small.png -------------------------------------------------------------------------------- /Libraries/PNGdec/src/PNGdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/src/PNGdec.cpp -------------------------------------------------------------------------------- /Libraries/PNGdec/src/PNGdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/src/PNGdec.h -------------------------------------------------------------------------------- /Libraries/PNGdec/src/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/src/adler32.c -------------------------------------------------------------------------------- /Libraries/PNGdec/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/src/crc32.c -------------------------------------------------------------------------------- /Libraries/PNGdec/src/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/src/crc32.h -------------------------------------------------------------------------------- /Libraries/PNGdec/src/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/src/infback.c -------------------------------------------------------------------------------- /Libraries/PNGdec/src/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/src/inffast.c -------------------------------------------------------------------------------- /Libraries/PNGdec/src/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/src/inffast.h -------------------------------------------------------------------------------- /Libraries/PNGdec/src/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/src/inffixed.h -------------------------------------------------------------------------------- /Libraries/PNGdec/src/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/src/inflate.c -------------------------------------------------------------------------------- /Libraries/PNGdec/src/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/src/inflate.h -------------------------------------------------------------------------------- /Libraries/PNGdec/src/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/src/inftrees.c -------------------------------------------------------------------------------- /Libraries/PNGdec/src/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/src/inftrees.h -------------------------------------------------------------------------------- /Libraries/PNGdec/src/png.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/src/png.inl -------------------------------------------------------------------------------- /Libraries/PNGdec/src/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/src/zconf.h -------------------------------------------------------------------------------- /Libraries/PNGdec/src/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/src/zlib.h -------------------------------------------------------------------------------- /Libraries/PNGdec/src/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/src/zutil.c -------------------------------------------------------------------------------- /Libraries/PNGdec/src/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/PNGdec/src/zutil.h -------------------------------------------------------------------------------- /Libraries/TFT_eSPI.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/TFT_eSPI.zip -------------------------------------------------------------------------------- /Libraries/VescUart/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/VescUart/LICENSE -------------------------------------------------------------------------------- /Libraries/VescUart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/VescUart/README.md -------------------------------------------------------------------------------- /Libraries/VescUart/examples/getVescValues/getVescValues.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/VescUart/examples/getVescValues/getVescValues.ino -------------------------------------------------------------------------------- /Libraries/VescUart/examples/getVescValuesSoftwareSerial/getVescValuesSoftwareSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/VescUart/examples/getVescValuesSoftwareSerial/getVescValuesSoftwareSerial.ino -------------------------------------------------------------------------------- /Libraries/VescUart/examples/setCurrent/setCurrent.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/VescUart/examples/setCurrent/setCurrent.ino -------------------------------------------------------------------------------- /Libraries/VescUart/examples/setNunchuckValues/setNunchuckValues.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/VescUart/examples/setNunchuckValues/setNunchuckValues.ino -------------------------------------------------------------------------------- /Libraries/VescUart/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/VescUart/keywords.txt -------------------------------------------------------------------------------- /Libraries/VescUart/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/VescUart/library.properties -------------------------------------------------------------------------------- /Libraries/VescUart/src/VescUart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/VescUart/src/VescUart.cpp -------------------------------------------------------------------------------- /Libraries/VescUart/src/VescUart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/VescUart/src/VescUart.h -------------------------------------------------------------------------------- /Libraries/VescUart/src/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/VescUart/src/buffer.cpp -------------------------------------------------------------------------------- /Libraries/VescUart/src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/VescUart/src/buffer.h -------------------------------------------------------------------------------- /Libraries/VescUart/src/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/VescUart/src/crc.cpp -------------------------------------------------------------------------------- /Libraries/VescUart/src/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/VescUart/src/crc.h -------------------------------------------------------------------------------- /Libraries/VescUart/src/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/Libraries/VescUart/src/datatypes.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/README.md -------------------------------------------------------------------------------- /SVD/20230924_183032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/SVD/20230924_183032.jpg -------------------------------------------------------------------------------- /SVD/EEPROMAnything.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/SVD/EEPROMAnything.h -------------------------------------------------------------------------------- /SVD/SVD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/SVD/SVD.ino -------------------------------------------------------------------------------- /SVD/svd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gh0513d/SVD/HEAD/SVD/svd.h --------------------------------------------------------------------------------