Initial Commit

This commit is contained in:
David Todd (c0de) 2018-09-27 19:54:04 -05:00
commit 00ca9037a6
4 changed files with 36 additions and 0 deletions

24
.editorconfig Normal file
View File

@ -0,0 +1,24 @@
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
# Matches multiple files with brace expansion notation
# Set default charset
[*.{js,py}]
charset = utf-8
# 4 space indentation
[*.py]
indent_style = space
indent_size = 4
# Markdown
[*.md]
indent_style = space
indent_size = 2

0
.gitignore vendored Normal file
View File

7
license Normal file
View File

@ -0,0 +1,7 @@
Copyright 2018 c0de - c0de@c0defox.es
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

5
readme.md Normal file
View File

@ -0,0 +1,5 @@
# PixoPython
This is a project that aims to serve as a general purpose API server/client that drives the 16x16 RGB LED matrix of the [pixopixel](https://github.com/IdleHandsProject/pixopixel), except implemented in [esp32 micropython](https://github.com/micropython/micropython/tree/master/ports/esp32)
## License: MIT, refer to `license` for more information