Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/graysonarts/imuduino-raw
Node module for streaming the raw imu data from the imuduino
https://github.com/graysonarts/imuduino-raw
Last synced: about 5 hours ago
JSON representation
Node module for streaming the raw imu data from the imuduino
- Host: GitHub
- URL: https://github.com/graysonarts/imuduino-raw
- Owner: graysonarts
- Created: 2015-09-18T03:20:20.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-18T03:27:01.000Z (about 9 years ago)
- Last Synced: 2024-04-16T01:01:17.525Z (7 months ago)
- Language: Arduino
- Size: 109 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
IMUduino Raw Data For Node
=========================If you are using a Bluetooth 4.0 adapter on a GNU/Linux machine, you may need to run the following command from within this folder:
```
find -path '*noble*Release/hci-ble' -exec sudo setcap cap_net_raw+eip '{}' \;
```
...This will allow the noble library to run without requiring 'sudo' to access local hardware.Note, if you have multiple Bluetooth HCI devices on your machine, you may need to power down the non-BLE capable devices using `hciconfig hciX down` (X is the index number, as seen with the `hcitool` command).
# Starting up
1. npm install imuduino-raw
2. load the raw_values.ino from the repository onto the arduino
3. Take a look at demo.js for how to use.```
# Assuming hci0 is a Bluetooth LE capable HCI device. CTRL-C to stop scanning.
sudo hcitool -i hci0 lescan
```