waterish_os_rev3_public/libraries/bitluni_ESP32Lib/examples/GFXWrapper/GFXWrapper.ino

33 lines
806 B
Arduino
Raw Permalink Normal View History

2019-08-09 02:01:56 +00:00
//This example shows how to use the GfxWrapper to be able to use the Adafruit GFX library with VGA
//cc by-sa 4.0 license
//bitluni
#include <ESP32Lib.h>
#include <Ressources/Font6x8.h>
#include <GfxWrapper.h>
#include <Fonts/FreeMonoBoldOblique24pt7b.h>
#include <Fonts/FreeSerif9pt7b.h>
//VGA Device
VGA6Bit vga;
GfxWrapper<VGA6Bit> gfx(vga, 640, 400);
//initial setup
void setup()
{
//initializing i2s vga (with only one framebuffer)
//Pin presets are avaialable for: VGAv01, VGABlackEdition, VGAWhiteEdition, PicoVGA
//But you can also use custom pins. Check the other examples
vga.init(vga.MODE640x400, vga.VGABlackEdition);
//using adafruit gfx
gfx.setFont(&FreeMonoBoldOblique24pt7b);
gfx.setCursor(100, 100);
gfx.print("Hello");
}
//the loop is done every frame
void loop()
{
}