Markus

Results 190 comments of Markus

Hi, looks like a interesting project you are running here. I am fine to re license my code under MIT for this Project. I changed the license and created a...

have you tried using less then 460800 baud?

yes, any VNC server will work, as long its implementing rfbproto which is basically all of them.

-313 is: https://github.com/Links2004/arduinoVNC/blob/7432977b7af01d7b0536782c5cc8083bc22aa571/src/rfbproto.h#L497 which is a TightVNC extension, which is supported by many servers today. but it is currently not used by the code: https://github.com/Links2004/arduinoVNC/blob/7432977b7af01d7b0536782c5cc8083bc22aa571/src/VNC.cpp#L215 so no problem there. why...

SSH and VNC on the ESP will be too much for the ESP since SSH includes encryption, and the ESP is it was limit with VNC already. 2Hz is a...

looks possible with `writeScreen` http://www.fabglib.org/classfabgl_1_1_v_g_a_controller_aab70542bc1007b141bb2d6db3acbce02.html#aab70542bc1007b141bb2d6db3acbce02 the for the output the implementation of `VNCdisplay` is needed, see - VNC_ILI9341.cpp - VNC_ILI9341.h or - VNC_ST7789.cpp - VNC_ST7789.h for examples mouse event example:...

the VNCdisplay interfaces allows you to plug in any display / output you want. what is needed is the implementation of the `VNCdisplay` class. https://github.com/Links2004/arduinoVNC/blob/master/src/VNC.h#L143-L163 example: https://github.com/Links2004/arduinoVNC/blob/master/src/VNC_ILI9341.cpp

currently not, bit after a short look at the lib it looks like the needed functions are there. mostly: https://github.com/Bodmer/TFT_eSPI/blob/5f171eeefdb8674ee85e5dde26dcee955524510a/TFT_eSPI.h#L394 https://github.com/Bodmer/TFT_eSPI/blob/5f171eeefdb8674ee85e5dde26dcee955524510a/TFT_eSPI.h#L418 https://github.com/Bodmer/TFT_eSPI/blob/5f171eeefdb8674ee85e5dde26dcee955524510a/TFT_eSPI.h#L384-L385 what is needed is the implementation of the...

this looks like the `ST7789` does not use the same RGB encoding the any display I had in hand. you most likely can fix this by changing the color bit...

please check if the `ST7789` branch does work, if yes I will release a new version of the lib. https://github.com/Links2004/arduinoVNC/tree/ST7789 https://github.com/Links2004/arduinoVNC/pull/19