-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add library.properties add library.json rename docs
- Loading branch information
Showing
6 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Compiled Object files | ||
*.slo | ||
*.lo | ||
*.o | ||
*.obj | ||
|
||
# Precompiled Headers | ||
*.gch | ||
*.pch | ||
|
||
# Compiled Dynamic libraries | ||
*.so | ||
*.dylib | ||
*.dll | ||
|
||
# Fortran module files | ||
*.mod | ||
|
||
# Compiled Static libraries | ||
*.lai | ||
*.la | ||
*.a | ||
*.lib | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
VNC Client for Arduino | ||
=========================================== | ||
|
||
a VNC Client for Arduino based on rfbproto. | ||
|
||
##### Supported features ##### | ||
- Bell | ||
- CutText (clipboard) | ||
|
||
##### Supported encodings ##### | ||
- RAW | ||
- RRE | ||
- CORRE | ||
- HEXTILE | ||
- COPYRECT (if display support it) | ||
|
||
##### Not supported encodings ##### | ||
- TIGHT | ||
- ZLIB | ||
|
||
##### Supported Hardware ##### | ||
- ESP8266 [Arduino for ESP8266](https://github.com/Links2004/Arduino) | ||
|
||
may run on Arduino DUE too. | ||
|
||
##### Supported Displays ##### | ||
- ILI9341 | ||
|
||
more possible using ```VNCdisplay``` Interface | ||
|
||
### Issues ### | ||
Submit issues to: https://github.com/Links2004/arduinoVNC/issues | ||
|
||
### License and credits ### | ||
|
||
The library is licensed under [LGPLv2.1](https://github.com/Links2004/arduinoVNC/blob/master/LICENSE) | ||
|
||
|
||
D3DES by Richard Outerbridge (public domain) | ||
|
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "arduinoVNC", | ||
"keywords": "VNC, rfbproto, client, image, rfb", | ||
"description": "VNC Client for Arduino", | ||
"repository": | ||
{ | ||
"type": "git", | ||
"url": "https://github.com/Links2004/arduinoVNC.git" | ||
}, | ||
"exclude": "tests", | ||
"frameworks": "arduino", | ||
"platforms": "esp8266", | ||
"authors": | ||
{ | ||
"name": "Markus Sattler", | ||
"url": "https://github.com/Links2004", | ||
"maintainer": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name=arduinoVNC | ||
version=1.0 | ||
author=Markus Sattler | ||
maintainer=Markus Sattler | ||
sentence=VNC Client for Arduino | ||
paragraph= | ||
category=Display | ||
url=https://github.com/Links2004/arduinoVNC | ||
architectures=esp8266 |