From 00ca9037a63afe349cf064ba8eca7a3704d44fe0 Mon Sep 17 00:00:00 2001 From: "David Todd (c0de)" Date: Thu, 27 Sep 2018 19:54:04 -0500 Subject: [PATCH] Initial Commit --- .editorconfig | 24 ++++++++++++++++++++++++ .gitignore | 0 license | 7 +++++++ readme.md | 5 +++++ 4 files changed, 36 insertions(+) create mode 100644 .editorconfig create mode 100644 .gitignore create mode 100644 license create mode 100644 readme.md diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ec3f450 --- /dev/null +++ b/.editorconfig @@ -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 \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/license b/license new file mode 100644 index 0000000..4101482 --- /dev/null +++ b/license @@ -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. \ No newline at end of file diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..8c92f66 --- /dev/null +++ b/readme.md @@ -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