Open
Conversation
mirkoCrobu
reviewed
Mar 6, 2026
mirkoCrobu
reviewed
Mar 6, 2026
…ng in Load function
…hods for consistency feat: add new bricks for image classification, object detection, video processing, and anomaly detection
… methods for consistency
…cross the codebase
… image in systemd service
…ex for consistency
…ross the codebase
* wip * better document the requirements * remove hardcoded /home/arduino * fix e2e in ci * add sysupgrade requirement * use uid instead of group * Update docs/user-documentation.md Co-authored-by: Davide <davideneri18@gmail.com> --------- Co-authored-by: Davide <davideneri18@gmail.com>
* fix: create .cache only if needed * fixup! fix: create .cache only if needed * trigger ci️
* Download libraries used in examples during system init * Implemented a basic progress for download of libraries * Set data dir according to env var if specified * Detect automatically default profile * Download also the zephyr platform * Slightly improve readability of code --------- Co-authored-by: lucarin91 <lucarin@protonmail.com>
…n is not present in app.yaml (#265) * add description md parser * update load test * add test e2e * fix test e2e * fix code review * replace goldmark parser with manual parser * fix removed goldmark * code review fix * code review fix
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Support a local bricks inside the app folder.
Change description
Added a brick
Managerthat has a list of Brick sources. A brick source is any sruct that implement the following apiGetByID(id string) (*Brick, bool)ListBricks() ([]Brick, bool)GetComposePath(id string) (*paths.Path, bool)GetApiDocPath(id string) (*paths.Path, error)-
GetExamplesPath(id string) (paths.PathList, error)Added two brick sources
builtinthat loads the bricks index in the asset folderapplocalthat loads the bricks index from an appThe applocal index is added to the manager only when an app is present.
NOTE: the
WithBrickSourcecreate a copy of the manager.Additional Notes
TODO
requirements.txtReviewer checklist
main.