From c376fa38b688e4ac00077cf0241732badd69737b Mon Sep 17 00:00:00 2001 From: Fabrizio Di Vittorio Date: Tue, 4 Aug 2020 09:53:59 +0200 Subject: [PATCH] use of VGA16Controller in place of VGAController --- examples/VGA/SimpleTerminalOut/SimpleTerminalOut.ino | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/examples/VGA/SimpleTerminalOut/SimpleTerminalOut.ino b/examples/VGA/SimpleTerminalOut/SimpleTerminalOut.ino index ddb6c2c4f..3a984cd85 100644 --- a/examples/VGA/SimpleTerminalOut/SimpleTerminalOut.ino +++ b/examples/VGA/SimpleTerminalOut/SimpleTerminalOut.ino @@ -26,8 +26,8 @@ -fabgl::VGAController DisplayController; -fabgl::Terminal Terminal; +fabgl::VGA16Controller DisplayController; +fabgl::Terminal Terminal; void setup() @@ -35,8 +35,7 @@ void setup() //Serial.begin(115200); delay(500); Serial.write("\n\n\n"); // DEBUG ONLY DisplayController.begin(); - DisplayController.setResolution(VGA_640x350_70HzAlt1); - //DisplayController.setResolution(VGA_640x240_60Hz); // select to have more free memory + DisplayController.setResolution(VGA_640x480_60Hz); Terminal.begin(&DisplayController); Terminal.setLogStream(Serial); // DEBUG ONLY @@ -208,5 +207,4 @@ void loop() demo4(); delay(4000); demo5(); - delay(4000); }