-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Camera improvements #412
Open
kakopappa
wants to merge
19
commits into
master
Choose a base branch
from
dev-3.4.0
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
281f2e0
CAMERA_MODEL_XIAO_ESP32S3 added
kakopappa 312c7f3
chore: additional cam models.
kakopappa 6de16ea
chore: formatting and camera init
kakopappa a9b02ad
chore: formatting
kakopappa 18d7b5c
fix: use unique_ptr to clean up client
kakopappa 9621999
feat: camera motion capture as gif
kakopappa 7feec37
Merge branch 'dev-3.4.0' of https://github.com/sinricpro/esp8266-esp3…
kakopappa 87c88ca
fix: url
kakopappa 3651614
fix: comment
kakopappa 44a6c6f
fix: remove incorrect example
kakopappa 2f346a8
feat: camera examples
kakopappa fc9e613
fix: workflow for esp32
kakopappa 577300f
fix: format and esp32 camera example compliation
kakopappa 0d525be
fix: remove camera examples
kakopappa 8887233
feat: compile camera examples
kakopappa 7207501
fix: deps
kakopappa f28efda
fix: compliation error
kakopappa a8abc2e
fix: clean workflow
kakopappa 4acb10e
fix: double import
kakopappa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,45 @@ | ||
name: ESP32 Camera Examples | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
env: | ||
SKETCHES: | | ||
examples/Camera/motion-capture | ||
examples/Camera/snapshot-camera | ||
|
||
jobs: | ||
compile-camera-examples: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- board: "esp32:esp32:esp32" | ||
platform-url: "https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json" | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Python dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pyserial | ||
|
||
- name: Compile ESP32 camera examples | ||
uses: arduino/compile-sketches@v1 | ||
with: | ||
fqbn: ${{ matrix.board }} | ||
platforms: | | ||
- name: esp32:esp32 | ||
source-url: ${{ matrix.platform-url }} | ||
libraries: | | ||
- source-path: ./ | ||
- source-url: https://github.com/Links2004/arduinoWebSockets.git | ||
- source-url: https://github.com/bblanchon/ArduinoJson.git | ||
sketch-paths: ${{ env.SKETCHES }} | ||
cli-compile-flags: | | ||
- --warnings=none |
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kakopappa Please remove the camera examples from this list. This job runs on ESP32 and ESP8266 and will fail on ESP8266.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @sivar2311
added a new workflow for camera examples