https://github.com/kulia/x4m300parser
https://github.com/kulia/x4m300parser
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kulia/x4m300parser
- Owner: kulia
- License: mit
- Created: 2018-10-29T15:35:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-29T16:13:20.000Z (over 7 years ago)
- Last Synced: 2025-04-09T15:54:21.715Z (about 1 year ago)
- Language: HTML
- Size: 1.05 MB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python parser for Novelda’s XeThru X4M300
The XeThru [X4M300](https://www.xethru.com/x4m300-presence-sensor.html) is Novelda’s presence and occupancy sensor powered by the XeThru X4 ultra wideband radar chip. This parser extracts the raw data from the radar, without Novelda’s processing.
# Installing
X4M300 drivers for MacOs and Linux are added to the repository for easier access. Other drivers are accessible [here](https://www.xethru.com/community/resources/). For installing the drivers and the parser, write
```console
$./setup/install.sh
```
# Usage
Example python script for aquireing data from the sensor:
```python
sd = StreamData(USB_PORT)
for i_data, q_data in sd:
print('i_data:', i_data)
print('q_data:', q_data)
```