espvgax2 icon indicating copy to clipboard operation
espvgax2 copied to clipboard

VGA signal generation on ESP8266, 320x240px with 16 colors

Results 7 espvgax2 issues
Sort by recently updated
recently updated
newest added

here is the code im using. #include #include #include #include ESPVGAX2 vga; uint8_t borderColor = 0xf; void setup() { Serial.begin(115200); vga.begin(); vga.setBitmapFont((uint8_t*)img2_monodos8_data, 8); vga.drawLine(0, 0, displayWidth - 1, 0, borderColor);...

A big thumbs up for this project. I really love it. Only having a hard time adapting the code to display multiple images in a row as a slide show....

thank-you for that library, however compiling ESPVGAX2 example with Visual Studio Code using smaffer/ESPVGAX2@^1.0.0 yield to error message: ISO C++17 does not allow 'register' storage class specifier [-Wregister] line #...

Hi, I'm currently working on a CRT chassis and would like to implement my own OSD. For that I'd like to either use an Arduino or ESP8266. Instead of generating...

I'd like to know what the limitations are for wifi. I don't need fastly refreshed display of data. I just need a refresh every second. I know wifi can introduce...

Congratulations! What you do in this library is really ingenious! I think that you have a little error here: https://github.com/smaffer/espvgax2/blob/a51c674bcd7f399f63ce357bedbb6315200650c8/examples/Wifi/Wifi.ino#L14 It should be: ``` vga.setFont((uint8_t*)fnt2_arial12_data, FNT2_ARIAL12_SYMBOLS_COUNT, ``` By the way,...

This is working great except that if I use functions like serial.available or serial.read, the display glitches slightly which isn't a huge deal, but sometimes it temporarily stops the screen...