{"id":21191755,"url":"https://github.com/edgeimpulse/particle-ingestion","last_synced_at":"2025-10-13T07:06:58.442Z","repository":{"id":206039948,"uuid":"650716669","full_name":"edgeimpulse/particle-ingestion","owner":"edgeimpulse","description":"Ingestion project for Particle Photon2 devices using the data forwarder","archived":false,"fork":false,"pushed_at":"2025-02-10T10:38:42.000Z","size":53,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-29T13:54:40.053Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause-clear","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/edgeimpulse.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-06-07T16:48:57.000Z","updated_at":"2025-02-10T10:38:45.000Z","dependencies_parsed_at":"2024-05-07T16:58:05.398Z","dependency_job_id":null,"html_url":"https://github.com/edgeimpulse/particle-ingestion","commit_stats":null,"previous_names":["edgeimpulse/particle-ingestion"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/edgeimpulse/particle-ingestion","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edgeimpulse%2Fparticle-ingestion","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edgeimpulse%2Fparticle-ingestion/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edgeimpulse%2Fparticle-ingestion/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edgeimpulse%2Fparticle-ingestion/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/edgeimpulse","download_url":"https://codeload.github.com/edgeimpulse/particle-ingestion/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edgeimpulse%2Fparticle-ingestion/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279014105,"owners_count":26085459,"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","status":"online","status_checked_at":"2025-10-13T02:00:06.723Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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-11-20T19:05:10.316Z","updated_at":"2025-10-13T07:06:58.426Z","avatar_url":"https://github.com/edgeimpulse.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Edge Impulse's Particle Ingestion Project\n\nFor more information see our [Particle Photon 2](https://docs.edgeimpulse.com/docs/edge-ai-hardware/mcu/particle-photon-2) or [Particle Boron](https://docs.edgeimpulse.com/docs/edge-ai-hardware/mcu/particle-boron)\ndocumentation.\n\n## Hardware\nThe ingestion firmware is based on the Particle Photon2 and Boron devices. The Photon2 uses the [Analog Devices ADXL362](https://www.analog.com/media/en/technical-documentation/data-sheets/adxl362.pdf) while the Boron uses the [Analog Devices ADXL345](https://www.analog.com/media/en/technical-documentation/data-sheets/adxl345.pdf)\n\nThe library used and included in this project for the Photon 2 can be found [here](https://github.com/rickkas7/ADXL362DMA) This repository also explains how to connect the ADXL362 to the Photon2. For the Boron the library is included in the project properties file dependency list.\n\n## Setup\n\n### Particle Tools\nMake sure you've installed the particle tools. You can either use [particle cli](https://docs.particle.io/getting-started/developer-tools/cli/) or the VSCode extension [Workbench IDE](https://docs.particle.io/getting-started/developer-tools/workbench/) (recommended).\n\n### Edge Impulse CLI\nFor uploading data to studio, the `edge-impulse-data-forwarder` tool is used. This is included in the Edge Impulse CLI tools which can be downloaded [here](https://www.npmjs.com/package/edge-impulse-cli)\n\n\n## Build and Flash (locally): in Particle Workbench\n\n1. In Workbench, select **Particle: Import Project** and select the `project.properties` file in the directory that you just downloaded and extracted.\n\n1. Use **Particle: Configure Project for Device** and select **deviceOS@5.8.0 (or a later version)** and choose a target. (e.g. **Photon 2/P2** or **Boron**).\n\n1. Compile with  **Particle: Compile application (local)**\n\n1. Flash with **Particle: Flash application (local)**\n\n## Run\n\nBefore starting ingestion make sure you have an Edge Impulse account. Go to [edgeimpulse.com](http://edge-impulse.com) to sign up. And make sure you've created a project within Edge Impulse to create your ML model.\n\nConnect your device to the Edge Impulse studio by running following command in a terminal:\n\n```\n$ edge-impulse-data-forwarder\n```\n\nAfter connecting, the tool will ask to login to your account and select the project. Lastly the tool will ask you name the axes you're about to sample. For a 3 axes accelerometer we would usually name them: `accX, accY, accZ`.\n\nNow head over to Edge Impulse studio and start collecting data. More info on how to collect data can be found on the [docs pages](https://docs.edgeimpulse.com/docs/edge-impulse-studio/data-acquisition).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedgeimpulse%2Fparticle-ingestion","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fedgeimpulse%2Fparticle-ingestion","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedgeimpulse%2Fparticle-ingestion/lists"}