Any way to use the Giga Display Shield With EEZ Studio

I have been trying to get the Giga Display Shield with EEZ Studio. But there doesn't seem to be a clear tutorial on how to do this. Can someone please send some sort of guide or tutorial that shows how to do this. Thanks in advance!

This is the first I have seen this, does EEZ Studio offer support? While waiting on a response here also ask them.

I found a solution. Put all compiled files in project directory. Have the main script be

#include "Arduino_H7_Video.h"
#include "lvgl.h"
#include "Arduino_GigaDisplayTouch.h"


#include <eez-framework.h> // for eez-framwork only
#include "ui.h"

/* Initialize the GIGA Display Shield with a resolution of 800x480 pixels */
Arduino_H7_Video Display(800, 480, GigaDisplayShield);
Arduino_GigaDisplayTouch Touch;

void setup() {
    Display.begin();
    Touch.begin();

    ui_init();
}

void loop() {
    lv_timer_handler();
    ui_tick();
}

Make sure you have eez-framework library installed

1 Like