https://github.com/hanabix/vizmo
Visualization of IMU in realtime or replay
https://github.com/hanabix/vizmo
imu web-bluetooth witmotion
Last synced: 2 months ago
JSON representation
Visualization of IMU in realtime or replay
- Host: GitHub
- URL: https://github.com/hanabix/vizmo
- Owner: hanabix
- Created: 2025-02-22T07:41:57.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-03-02T07:07:25.000Z (3 months ago)
- Last Synced: 2025-03-02T08:19:07.195Z (3 months ago)
- Topics: imu, web-bluetooth, witmotion
- Language: TypeScript
- Homepage: https://hanabix.github.io/vizmo/
- Size: 1.48 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[WIP] 目前支持 IMU 蓝牙设备的:
- [x] [WT9011DCL](https://wit-motion.yuque.com/wumwnr/docs/rwiclb)
## 相关参考
- [蓝牙协议](https://wit-motion.yuque.com/wumwnr/docs/ycui87fgg1mepk1u#cMiN1)
- [SDK 参考代码](https://github.com/WITMOTION/WitBluetooth_BWT901BLE5_0/blob/main/Android_Java/wit-example-ble5/WitSDK/src/main/java/com/wit/witsdk/Device/DeviceModel.java#L199)
- [通过 JavaScript 与蓝牙设备通信](https://developer.chhttps://developer.chrome.com/docs/capabilities/bluetooth?hl=zh-cn)
- [Web Bluetooth Samples](https://googlechrome.github.io/samples/web-bluetooth/index.html)## Zsh 用户小贴士
`source .zshrc` 能自动配置项目独立的 node 环境。
若希望与 VS Code 终端集成,可将如下内容添加至 `.vscode/settings.json`:
```json
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.profiles.osx": {
"zsh": {
"path": "/bin/zsh",
"args": [
"-l"
]
},
"bash": {
"path": "/bin/zsh",
"args": [
"-l"
]
}
},
"terminal.integrated.env.osx": {
"ZDOTDIR": "${workspaceFolder}"
}
```