EmotiBit / EmotiBit_Plugins

Examples and information to make EmotiBit plugins
MIT License
0 stars 0 forks source link

feat v1.0.7: rebased the repository to be more clear where everything… #6

Closed ThomasNels closed 3 weeks ago

ThomasNels commented 3 weeks ago

Description

This rebases the repository by doing a couple of things. The first is removing the cppExample_alg01 folder and moving all the information in that folder over to the src folder. The second is changing the pyExample_alg01 information to reflect these changes. These solves the issues referenced below because it transfers the source code itself into the src folder. Beforehand it was very unclear where the actual source code was.

Requirements

Issues Referenced

Documentation update

Documentation update to README_py.md

Notes for Reviewer

Testing

Results

Took this structure:

EmotiBit_Plugins
├── ardExample_alg01
│   └── ardExample_alg01.ino
├── cppExample_alg01
│   ├── CMakeLists.txt
│   └── driver.cpp
├── ofExample_alg01
│   └── src
│       └── ofapp.cpp
├── pyExample_alg01
│   ├── EmotiBit-pyenv-modern.yml
│   └── pyExample_alg01.py
├── src
│   ├── alg01.cpp
│   └── alg01.h
├── .gitignore
├── LICENSE
├── README.md
├── README_ard.md
├── README_of.md
├── README_py.md
└── library.properties

and moved to this structure:

EmotiBit_Plugins
├── ardExample_alg01
│   └── ardExample_alg01.ino
├── ofExample_alg01
│   └── src
│       └── ofapp.cpp
├── pyExample_alg01
│   ├── EmotiBit-pyenv-modern.yml
│   └── pyExample_alg01.py
├── src
│   ├── alg01.cpp
│   ├── alg01.h
│   ├── CMakeLists.txt
│   └── driver.cpp
├── .gitignore
├── LICENSE
├── README.md
├── README_ard.md
├── README_of.md
├── README_py.md
└── library.properties

Feature Tests

N/A

Shared files

N/A

Checklist to allow merge

Screenshots:

nitin710 commented 3 weeks ago

Review 01

Approved for merge. @ThomasNels