├── README.md ├── STM32_GD2.cpp ├── STM32_GD2.h ├── example ├── 1.Basics │ ├── blobs │ │ └── blobs.ino │ ├── button │ │ └── button.ino │ ├── fizz │ │ └── fizz.ino │ ├── helloworld │ │ └── helloworld.ino │ ├── jpeg │ │ └── jpeg.ino │ ├── loadSdFat │ │ └── loadSdFat.ino │ ├── movetext │ │ ├── STM32a.h │ │ └── movetext.ino │ ├── simon │ │ └── simon.ino │ └── systeminfo │ │ └── systeminfo.ino ├── 2.Graphics │ ├── bateria │ │ ├── ALGER.h │ │ ├── BatX1.h │ │ ├── C1a.h │ │ ├── C2a.h │ │ ├── Rad1a.h │ │ ├── Tuffy_Bold_Italic.h │ │ └── bateria.ino │ ├── logo │ │ ├── logo.ino │ │ └── logo_assets.h │ ├── mono │ │ ├── mono.ino │ │ └── mono_assets.h │ ├── reflection │ │ ├── reflection.ino │ │ └── reflection_assets.h │ ├── slotgag │ │ ├── slotgag.ino │ │ └── slotgag_assets.h │ ├── tiled │ │ ├── tiled.ino │ │ └── tiled_assets.h │ └── walk │ │ ├── walk.ino │ │ └── walk_assets.h ├── 3.Peripherals │ ├── noisy │ │ ├── noisy.ino │ │ └── noisy_assets.h │ ├── sketch │ │ └── sketch.ino │ ├── song │ │ └── song.ino │ └── tilt │ │ └── tilt.ino ├── 4.Utilities │ ├── radarchart │ │ └── radarchart.ino │ ├── selftest │ │ ├── selftest.ino │ │ └── selftest_assets.h │ └── viewer │ │ └── viewer.ino ├── 5.Demos │ ├── cobra │ │ ├── cobra.ino │ │ └── cobra_assets.h │ ├── jnr │ │ ├── jnr.ino │ │ └── jnr_assets.h │ ├── kenney │ │ ├── kenney.ino │ │ └── kenney_assets.h │ ├── scroll-x │ │ └── scroll-x.ino │ ├── scroll-y │ │ └── scroll-y.ino │ ├── sprites │ │ ├── sprites.ino │ │ └── sprites_assets.h │ └── widgets │ │ └── widgets.ino ├── 6.Games │ ├── chess │ │ ├── chess.ino │ │ └── chess_assets.h │ ├── frogger │ │ ├── frogger.ino │ │ └── frogger_assets.h │ ├── manicminer │ │ ├── manicminer.h │ │ ├── manicminer.ino │ │ └── mmtypes.h │ └── nightstrike │ │ ├── nightstrike.ino │ │ ├── nightstrike_1_assets.h │ │ └── nightstrike_welcome_assets.h └── 7.GD3 │ ├── cube │ └── cube.ino │ ├── cube2 │ └── cube2.ino │ ├── video1 │ └── video1.ino │ └── video2 │ └── video2.ino └── transports ├── dump.h ├── serial.h ├── spidev.h └── wiring.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/README.md -------------------------------------------------------------------------------- /STM32_GD2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/STM32_GD2.cpp -------------------------------------------------------------------------------- /STM32_GD2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/STM32_GD2.h -------------------------------------------------------------------------------- /example/1.Basics/blobs/blobs.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/1.Basics/blobs/blobs.ino -------------------------------------------------------------------------------- /example/1.Basics/button/button.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/1.Basics/button/button.ino -------------------------------------------------------------------------------- /example/1.Basics/fizz/fizz.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/1.Basics/fizz/fizz.ino -------------------------------------------------------------------------------- /example/1.Basics/helloworld/helloworld.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/1.Basics/helloworld/helloworld.ino -------------------------------------------------------------------------------- /example/1.Basics/jpeg/jpeg.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/1.Basics/jpeg/jpeg.ino -------------------------------------------------------------------------------- /example/1.Basics/loadSdFat/loadSdFat.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/1.Basics/loadSdFat/loadSdFat.ino -------------------------------------------------------------------------------- /example/1.Basics/movetext/STM32a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/1.Basics/movetext/STM32a.h -------------------------------------------------------------------------------- /example/1.Basics/movetext/movetext.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/1.Basics/movetext/movetext.ino -------------------------------------------------------------------------------- /example/1.Basics/simon/simon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/1.Basics/simon/simon.ino -------------------------------------------------------------------------------- /example/1.Basics/systeminfo/systeminfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/1.Basics/systeminfo/systeminfo.ino -------------------------------------------------------------------------------- /example/2.Graphics/bateria/ALGER.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/2.Graphics/bateria/ALGER.h -------------------------------------------------------------------------------- /example/2.Graphics/bateria/BatX1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/2.Graphics/bateria/BatX1.h -------------------------------------------------------------------------------- /example/2.Graphics/bateria/C1a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/2.Graphics/bateria/C1a.h -------------------------------------------------------------------------------- /example/2.Graphics/bateria/C2a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/2.Graphics/bateria/C2a.h -------------------------------------------------------------------------------- /example/2.Graphics/bateria/Rad1a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/2.Graphics/bateria/Rad1a.h -------------------------------------------------------------------------------- /example/2.Graphics/bateria/Tuffy_Bold_Italic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/2.Graphics/bateria/Tuffy_Bold_Italic.h -------------------------------------------------------------------------------- /example/2.Graphics/bateria/bateria.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/2.Graphics/bateria/bateria.ino -------------------------------------------------------------------------------- /example/2.Graphics/logo/logo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/2.Graphics/logo/logo.ino -------------------------------------------------------------------------------- /example/2.Graphics/logo/logo_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/2.Graphics/logo/logo_assets.h -------------------------------------------------------------------------------- /example/2.Graphics/mono/mono.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/2.Graphics/mono/mono.ino -------------------------------------------------------------------------------- /example/2.Graphics/mono/mono_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/2.Graphics/mono/mono_assets.h -------------------------------------------------------------------------------- /example/2.Graphics/reflection/reflection.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/2.Graphics/reflection/reflection.ino -------------------------------------------------------------------------------- /example/2.Graphics/reflection/reflection_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/2.Graphics/reflection/reflection_assets.h -------------------------------------------------------------------------------- /example/2.Graphics/slotgag/slotgag.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/2.Graphics/slotgag/slotgag.ino -------------------------------------------------------------------------------- /example/2.Graphics/slotgag/slotgag_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/2.Graphics/slotgag/slotgag_assets.h -------------------------------------------------------------------------------- /example/2.Graphics/tiled/tiled.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/2.Graphics/tiled/tiled.ino -------------------------------------------------------------------------------- /example/2.Graphics/tiled/tiled_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/2.Graphics/tiled/tiled_assets.h -------------------------------------------------------------------------------- /example/2.Graphics/walk/walk.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/2.Graphics/walk/walk.ino -------------------------------------------------------------------------------- /example/2.Graphics/walk/walk_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/2.Graphics/walk/walk_assets.h -------------------------------------------------------------------------------- /example/3.Peripherals/noisy/noisy.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/3.Peripherals/noisy/noisy.ino -------------------------------------------------------------------------------- /example/3.Peripherals/noisy/noisy_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/3.Peripherals/noisy/noisy_assets.h -------------------------------------------------------------------------------- /example/3.Peripherals/sketch/sketch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/3.Peripherals/sketch/sketch.ino -------------------------------------------------------------------------------- /example/3.Peripherals/song/song.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/3.Peripherals/song/song.ino -------------------------------------------------------------------------------- /example/3.Peripherals/tilt/tilt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/3.Peripherals/tilt/tilt.ino -------------------------------------------------------------------------------- /example/4.Utilities/radarchart/radarchart.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/4.Utilities/radarchart/radarchart.ino -------------------------------------------------------------------------------- /example/4.Utilities/selftest/selftest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/4.Utilities/selftest/selftest.ino -------------------------------------------------------------------------------- /example/4.Utilities/selftest/selftest_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/4.Utilities/selftest/selftest_assets.h -------------------------------------------------------------------------------- /example/4.Utilities/viewer/viewer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/4.Utilities/viewer/viewer.ino -------------------------------------------------------------------------------- /example/5.Demos/cobra/cobra.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/5.Demos/cobra/cobra.ino -------------------------------------------------------------------------------- /example/5.Demos/cobra/cobra_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/5.Demos/cobra/cobra_assets.h -------------------------------------------------------------------------------- /example/5.Demos/jnr/jnr.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/5.Demos/jnr/jnr.ino -------------------------------------------------------------------------------- /example/5.Demos/jnr/jnr_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/5.Demos/jnr/jnr_assets.h -------------------------------------------------------------------------------- /example/5.Demos/kenney/kenney.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/5.Demos/kenney/kenney.ino -------------------------------------------------------------------------------- /example/5.Demos/kenney/kenney_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/5.Demos/kenney/kenney_assets.h -------------------------------------------------------------------------------- /example/5.Demos/scroll-x/scroll-x.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/5.Demos/scroll-x/scroll-x.ino -------------------------------------------------------------------------------- /example/5.Demos/scroll-y/scroll-y.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/5.Demos/scroll-y/scroll-y.ino -------------------------------------------------------------------------------- /example/5.Demos/sprites/sprites.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/5.Demos/sprites/sprites.ino -------------------------------------------------------------------------------- /example/5.Demos/sprites/sprites_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/5.Demos/sprites/sprites_assets.h -------------------------------------------------------------------------------- /example/5.Demos/widgets/widgets.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/5.Demos/widgets/widgets.ino -------------------------------------------------------------------------------- /example/6.Games/chess/chess.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/6.Games/chess/chess.ino -------------------------------------------------------------------------------- /example/6.Games/chess/chess_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/6.Games/chess/chess_assets.h -------------------------------------------------------------------------------- /example/6.Games/frogger/frogger.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/6.Games/frogger/frogger.ino -------------------------------------------------------------------------------- /example/6.Games/frogger/frogger_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/6.Games/frogger/frogger_assets.h -------------------------------------------------------------------------------- /example/6.Games/manicminer/manicminer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/6.Games/manicminer/manicminer.h -------------------------------------------------------------------------------- /example/6.Games/manicminer/manicminer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/6.Games/manicminer/manicminer.ino -------------------------------------------------------------------------------- /example/6.Games/manicminer/mmtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/6.Games/manicminer/mmtypes.h -------------------------------------------------------------------------------- /example/6.Games/nightstrike/nightstrike.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/6.Games/nightstrike/nightstrike.ino -------------------------------------------------------------------------------- /example/6.Games/nightstrike/nightstrike_1_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/6.Games/nightstrike/nightstrike_1_assets.h -------------------------------------------------------------------------------- /example/6.Games/nightstrike/nightstrike_welcome_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/6.Games/nightstrike/nightstrike_welcome_assets.h -------------------------------------------------------------------------------- /example/7.GD3/cube/cube.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/7.GD3/cube/cube.ino -------------------------------------------------------------------------------- /example/7.GD3/cube2/cube2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/7.GD3/cube2/cube2.ino -------------------------------------------------------------------------------- /example/7.GD3/video1/video1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/7.GD3/video1/video1.ino -------------------------------------------------------------------------------- /example/7.GD3/video2/video2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/example/7.GD3/video2/video2.ino -------------------------------------------------------------------------------- /transports/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/transports/dump.h -------------------------------------------------------------------------------- /transports/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/transports/serial.h -------------------------------------------------------------------------------- /transports/spidev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/transports/spidev.h -------------------------------------------------------------------------------- /transports/wiring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nopnop2002/STM32_GD2/HEAD/transports/wiring.h --------------------------------------------------------------------------------