Hi,
Would it be possible to use the 4Duino as an Uno communicating with a normal 2.4PTU screen and design the GUI with Visi-Genie and using the genieArduino library?
I have used other 4D displays in projects and it just seems easier to use Visi-Genie to do the GUI design than the 4Duino Extended graphics environment.
I saw that the Picasso, on the 4Duino, is connected to the hardware serial port, pins 0 and 1 and assume the initialization should look like this:
.
.
Genie genie;
.
.
void setup()
{
Serial.begin(9600);
genie.Begin(Serial);
genie.AttachEventHandler(myGenieEventHandler);
.
.
.
}
What I can't find is the pin number of the reset pin in order to reset the display on startup?
Regards
Jan
Would it be possible to use the 4Duino as an Uno communicating with a normal 2.4PTU screen and design the GUI with Visi-Genie and using the genieArduino library?
I have used other 4D displays in projects and it just seems easier to use Visi-Genie to do the GUI design than the 4Duino Extended graphics environment.
I saw that the Picasso, on the 4Duino, is connected to the hardware serial port, pins 0 and 1 and assume the initialization should look like this:
.
.
Genie genie;
.
.
void setup()
{
Serial.begin(9600);
genie.Begin(Serial);
genie.AttachEventHandler(myGenieEventHandler);
.
.
.
}
What I can't find is the pin number of the reset pin in order to reset the display on startup?
Regards
Jan
Comment