acid-drop

- Hacking the planet from a LilyGo T-Deck using custom firmware
git clone git://git.acid.vegas/acid-drop.git
Log | Files | Refs | Archive | README | LICENSE

README.md (2062B)

      1 Modified Version of VNC Client for Arduino
      2 ===========================================
      3 
      4 * Added Zlib support
      5 
      6 Please find more details at instructables:
      7 <https://www.instructables.com/Arduino-Thin-Client/>
      8 
      9 Original source:
     10 <https://github.com/Links2004/arduinoVNC.git>
     11 
     12 Below is original README.md:
     13 
     14 VNC Client for Arduino
     15 ===========================================
     16 
     17 a VNC Client for Arduino based on rfbproto.
     18 
     19 Video:
     20 
     21 [![VNC Client on ESP8266 + ILI9341](https://img.youtube.com/vi/MA47npOtApc/0.jpg)](https://www.youtube.com/watch?v=MA47npOtApc)
     22 [![VNC Client on ESP8266 + ILI9341 + Touch](https://img.youtube.com/vi/8Ix-HomwQvw/0.jpg)](https://www.youtube.com/watch?v=8Ix-HomwQvw)
     23 
     24 ##### Supported features #####
     25 
     26 * Bell
     27 * CutText (clipboard)
     28 
     29 ##### Supported encodings #####
     30 
     31 * RAW
     32 * RRE
     33 * CORRE
     34 * HEXTILE
     35 * COPYRECT (if display support it)
     36   
     37 ##### Not supported encodings #####
     38 
     39 * TIGHT
     40 * ZLIB
     41 
     42 ##### Supported Hardware #####
     43 
     44 * ESP8266 [Arduino for ESP8266](https://github.com/esp8266/Arduino)
     45 * ESP32 [Arduino for ESP32](https://github.com/espressif/arduino-esp32)
     46  may run on Arduino DUE too.
     47 
     48 ##### Supported Displays #####
     49 
     50 * ILI9341 [library](https://github.com/Links2004/Adafruit_ILI9341)
     51 * ST7789 [library](https://github.com/Bodmer/TFT_eSPI)
     52 
     53 more possible using ```VNCdisplay``` Interface
     54 
     55 ### Issues ###
     56 
     57 Submit issues to: <https://github.com/Links2004/arduinoVNC/issues>
     58 
     59 ### License and credits ###
     60 
     61 The library is licensed under [GPLv2](https://github.com/Links2004/arduinoVNC/blob/master/LICENSE)
     62 
     63 D3DES by Richard Outerbridge (public domain)
     64 
     65 VNC code base (GPLv2)
     66 Thanks to all that worked on the original VNC implementation
     67 
     68 ```
     69 Copyright (C) 2009-2010, 2012 D. R. Commander. All Rights Reserved.
     70 Copyright (C) 2004-2008 Sun Microsystems, Inc. All Rights Reserved.
     71 Copyright (C) 2004 Landmark Graphics Corporation. All Rights Reserved.
     72 Copyright (C) 2000-2006 Constantin Kaplinsky. All Rights Reserved.
     73 Copyright (C) 2000 Tridia Corporation. All Rights Reserved.
     74 Copyright (C) 1999 AT&T Laboratories Cambridge. All Rights Reserved.
     75 ```