-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added seeed_xiao_esp32s3 * Fixed typo * Updating build system * Fixed typos * Renamed envirnment name to seeed_xiao_esp32s3 * Update README.md * Updated platformio definitions * Added cache * Updated README.md * - Default value for initResult if initialzation fails * constexpr camera_config_t m5stack_camera_settings * Added M5Stack UnitCamS3 * Work in progress * WIP * Work in progress * Removed OTA * Added unitcams3 * UnitcamS3 * Corrected HTML for ipv4 fixed Sewrial issue esp32s2 * USER_LED_ON_LEVEL=LOW * Added documentation pins for Mems/grove/led * Typo * Removed non required depencency * Removed non required depencency * Readded
- Loading branch information
Showing
57 changed files
with
1,324 additions
and
476 deletions.
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
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
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,65 @@ | ||
{ | ||
"build": { | ||
"arduino":{ | ||
"ldscript": "esp32_out.ld", | ||
"partitions": "huge_app.csv" | ||
}, | ||
"core": "esp32", | ||
"extra_flags": [ | ||
"'-D ESP32CAM_AI_THINKER'", | ||
"'-D BOARD_HAS_PSRAM'", | ||
"'-mfix-esp32-psram-cache-issue'", | ||
"'-D USER_LED_GPIO=33'", | ||
"'-D USER_LED_ON_LEVEL=LOW'", | ||
"'-D CAMERA_CONFIG_PIN_PWDN=32'", | ||
"'-D CAMERA_CONFIG_PIN_RESET=GPIO_NUM_NC'", | ||
"'-D CAMERA_CONFIG_PIN_XCLK=0'", | ||
"'-D CAMERA_CONFIG_PIN_SCCB_SDA=26'", | ||
"'-D CAMERA_CONFIG_PIN_SCCB_SCL=27'", | ||
"'-D CAMERA_CONFIG_PIN_Y9=35'", | ||
"'-D CAMERA_CONFIG_PIN_Y8=34'", | ||
"'-D CAMERA_CONFIG_PIN_Y7=39'", | ||
"'-D CAMERA_CONFIG_PIN_Y6=36'", | ||
"'-D CAMERA_CONFIG_PIN_Y5=21'", | ||
"'-D CAMERA_CONFIG_PIN_Y4=19'", | ||
"'-D CAMERA_CONFIG_PIN_Y3=18'", | ||
"'-D CAMERA_CONFIG_PIN_Y2=5'", | ||
"'-D CAMERA_CONFIG_PIN_VSYNC=25'", | ||
"'-D CAMERA_CONFIG_PIN_HREF=23'", | ||
"'-D CAMERA_CONFIG_PIN_PCLK=22'", | ||
"'-D CAMERA_CONFIG_CLK_FREQ_HZ=20000000'", | ||
"'-D CAMERA_CONFIG_LEDC_TIMER=LEDC_TIMER_0'", | ||
"'-D CAMERA_CONFIG_LEDC_CHANNEL=LEDC_CHANNEL_0'", | ||
"'-D CAMERA_CONFIG_FB_COUNT=2'", | ||
"'-D CAMERA_CONFIG_FB_LOCATION=CAMERA_FB_IN_PSRAM'" | ||
], | ||
"f_cpu": "240000000L", | ||
"f_flash": "40000000L", | ||
"flash_mode": "dio", | ||
"mcu": "esp32", | ||
"variant": "esp32" | ||
}, | ||
"connectivity": [ | ||
"wifi", | ||
"bluetooth", | ||
"ethernet", | ||
"can" | ||
], | ||
"debug": { | ||
"openocd_board": "esp-wroom-32.cfg" | ||
}, | ||
"frameworks": [ | ||
"arduino", | ||
"espidf" | ||
], | ||
"name": "ESP32CAM AI Thinker", | ||
"upload": { | ||
"flash_size": "4MB", | ||
"maximum_ram_size": 327680, | ||
"maximum_size": 4194304, | ||
"require_upload_port": true, | ||
"speed": 460800 | ||
}, | ||
"url": "https://docs.ai-thinker.com/esp32-cam", | ||
"vendor": "Anxinke" | ||
} |
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,61 @@ | ||
{ | ||
"build": { | ||
"arduino":{ | ||
"ldscript": "esp32s2_out.ld" | ||
}, | ||
"core": "esp32", | ||
"extra_flags": [ | ||
"'-D ESP32CAM_ESPRESSIF_ESP32S2_CAM_BOARD'", | ||
"'-D BOARD_HAS_PSRAM'", | ||
"'-D ARDUINO_USB_MODE=0'", | ||
"'-D ARDUINO_USB_CDC_ON_BOOT=1'", | ||
"'-D ARDUINO_RUNNING_CORE=1'", | ||
"'-D ARDUINO_EVENT_RUNNING_CORE=1'", | ||
"'-D CAMERA_CONFIG_PIN_PWDN=1'", | ||
"'-D CAMERA_CONFIG_PIN_RESET=2'", | ||
"'-D CAMERA_CONFIG_PIN_XCLK=42'", | ||
"'-D CAMERA_CONFIG_PIN_SCCB_SDA=41'", | ||
"'-D CAMERA_CONFIG_PIN_SCCB_SCL=18'", | ||
"'-D CAMERA_CONFIG_PIN_Y9=16'", | ||
"'-D CAMERA_CONFIG_PIN_Y8=39'", | ||
"'-D CAMERA_CONFIG_PIN_Y7=40'", | ||
"'-D CAMERA_CONFIG_PIN_Y6=15'", | ||
"'-D CAMERA_CONFIG_PIN_Y5=12'", | ||
"'-D CAMERA_CONFIG_PIN_Y4=5'", | ||
"'-D CAMERA_CONFIG_PIN_Y3=13'", | ||
"'-D CAMERA_CONFIG_PIN_Y2=14'", | ||
"'-D CAMERA_CONFIG_PIN_VSYNC=38'", | ||
"'-D CAMERA_CONFIG_PIN_HREF=4'", | ||
"'-D CAMERA_CONFIG_PIN_PCLK=3'", | ||
"'-D CAMERA_CONFIG_CLK_FREQ_HZ=20000000'", | ||
"'-D CAMERA_CONFIG_LEDC_TIMER=LEDC_TIMER_0'", | ||
"'-D CAMERA_CONFIG_LEDC_CHANNEL=LEDC_CHANNEL_0'", | ||
"'-D CAMERA_CONFIG_FB_COUNT=2'", | ||
"'-D CAMERA_CONFIG_FB_LOCATION=CAMERA_FB_IN_PSRAM'" ], | ||
"f_cpu": "240000000L", | ||
"f_flash": "80000000L", | ||
"flash_mode": "qio", | ||
"mcu": "esp32s2", | ||
"variant": "esp32s2" | ||
}, | ||
"connectivity": [ | ||
"wifi" | ||
], | ||
"debug": { | ||
"openocd_target": "esp32s2.cfg" | ||
}, | ||
"frameworks": [ | ||
"arduino", | ||
"espidf" | ||
], | ||
"name": "Espressif ESP32-S2-Saola-1", | ||
"upload": { | ||
"flash_size": "4MB", | ||
"maximum_ram_size": 327680, | ||
"maximum_size": 4194304, | ||
"require_upload_port": true, | ||
"speed": 460800 | ||
}, | ||
"url": "https://docs.espressif.com/projects/esp-idf/en/latest/esp32s2/hw-reference/esp32s2/user-guide-esp-lyrap-cam-v1.1.html", | ||
"vendor": "Espressif" | ||
} |
Oops, something went wrong.