{"id":22345008,"url":"https://github.com/seeed-studio/sscma-example-esp32","last_synced_at":"2025-07-30T03:31:58.129Z","repository":{"id":87774101,"uuid":"586762684","full_name":"Seeed-Studio/sscma-example-esp32","owner":"Seeed-Studio","description":"Example of SenseCraft Model Assistant Model deployment related to ESP32","archived":false,"fork":false,"pushed_at":"2024-11-20T03:38:21.000Z","size":9565,"stargazers_count":23,"open_issues_count":0,"forks_count":12,"subscribers_count":15,"default_branch":"main","last_synced_at":"2024-11-20T04:26:32.973Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Seeed-Studio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-01-09T07:03:06.000Z","updated_at":"2024-10-28T12:49:05.000Z","dependencies_parsed_at":"2024-11-20T04:33:07.294Z","dependency_job_id":null,"html_url":"https://github.com/Seeed-Studio/sscma-example-esp32","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Seeed-Studio%2Fsscma-example-esp32","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Seeed-Studio%2Fsscma-example-esp32/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Seeed-Studio%2Fsscma-example-esp32/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Seeed-Studio%2Fsscma-example-esp32/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Seeed-Studio","download_url":"https://codeload.github.com/Seeed-Studio/sscma-example-esp32/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228078613,"owners_count":17865959,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-04T09:15:58.758Z","updated_at":"2024-12-04T09:15:59.449Z","avatar_url":"https://github.com/Seeed-Studio.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SSCMA Deployment on Espressif Chipsets\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg width=\"100%\" src=\"https://cdn.jsdelivr.net/gh/Seeed-Studio/SSCMA-Micro@dev/docs/images/sscma.png\"\u003e\n\u003c/div\u003e\n\n\n\nEnglish | [简体中文](README_zh-CN.md)\n\n## Introduction\n\nThe project provides examples of how to deploy models from SSCMA to Espressif chipsets. It is based on the [ESP-IDF](https://github.com/espressif/esp-idf) and [TFLite-Micro](https://github.com/tensorflow/tflite-micro).\n\n\n## Getting Started\n\n### Install ESP IDF\n\nFollow instructions in this guide\n[ESP-IDF - Get Started](https://docs.espressif.com/projects/esp-idf/en/latest/get-started/index.html)\nto setup the built toolchain used by SSCMA examples. Currently we're using the latest version `v5.3`.\n\n### Clone and Setup the Repository\n\n1. Clone our repository.\n\n    ```sh\n    git clone https://github.com/Seeed-Studio/sscma-example-esp32\n    ```\n\n2. Go to `sscma-example-esp32` folder.\n\n    ```sh\n    cd sscma-example-esp32\n    ```\n\n3. Fetch the submodules.\n\n    ```sh\n    git submodule update --init\n    ```\n\n### Build and Run Examples\n\n1. Go to examples folder and list all available examples.\n\n    ```sh\n    cd examples \u0026\u0026 \\\n    ls\n    ```\n\n2. Choose a `\u003cdemo\u003e` and enter its folder.\n\n    ```sh\n    cd '\u003cdemo\u003e'\n    ```\n\n3. Generate build config using ESP-IDF.\n\n    Currently we develop and test on [XIAO-ESP32S3](https://www.seeedstudio.com/XIAO-ESP32S3-p-5627.html) module.\n\n    ```sh\n    # set build target\n    idf.py set-target esp32s3\n    ```\n\n    You can change a display driver, enable or disable a TFLite operator if it need using menuconfig.\n\n    ```sh\n    # change device or demo specific configuration\n    idf.py menuconfig\n    ```\n\n4. Build the demo firmware.\n\n    ```sh\n    idf.py build\n    ```\n\n5. Flash the demo firmware to device and Run.\n\n    To flash (the target serial port may vary depend on your operating system, please replace `/dev/ttyACM0` with your device serial port).\n\n    ```\n    idf.py --port /dev/ttyACM0 flash\n    ```\n\n    Monitor the serial output.\n\n    ```\n    idf.py --port /dev/ttyACM0 monitor\n    ```\n\n#### Tip\n\n- Use `Ctrl+]` to exit monitor.\n\n- The previous two commands can be combined.\n\n    ```sh\n    idf.py --port /dev/ttyACM0 flash monitor\n    ```\n\n\n### Supported Models and Performance\n\nPlease refer to [SSCMA Model Zoo](https://github.com/Seeed-Studio/sscma-model-zoo) for details.\n\n\n## Contributing\n\n- If you find any issue in using these examples, or wish to submit an enhancement request, please use the raise a [Issue](https://github.com/Seeed-Studio/sscma-example-esp32/issues) or submit a [Pull Request](https://github.com/Seeed-Studio/sscma-example-esp32/pulls).\n\n## License\n\n```\nThis software is licensed under the Apache 2.0 license, see LICENSE for more information.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseeed-studio%2Fsscma-example-esp32","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fseeed-studio%2Fsscma-example-esp32","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseeed-studio%2Fsscma-example-esp32/lists"}