An open API service indexing awesome lists of open source software.

https://github.com/calbabreaker/micap

Motion capture using IMUs
https://github.com/calbabreaker/micap

Last synced: about 1 year ago
JSON representation

Motion capture using IMUs

Awesome Lists containing this project

README

          

# Micap

Motion capture using IMUs

## App

To run the app:

```sh
cd app/
pnpm install
pnpm tauri dev
```

## Server

Alternatively, run the standalone server seperately to speed up compilation:

```sh
cd server/
cargo run
```

Svelte app:

```sh
cd app/
pnpm dev
```

## Firmware

To build and upload the firmware:

```sh
cd firmware/
pio run -t upload
```

## Dummy Client

To run the dummy UDP client for testing/benching (without a physical device):

```sh
cd dummy-client/
cargo run
```