Rust implementation for Aranet environmental sensors.
Connect to your Aranet devices via Bluetooth LE to read measurements, download history, and monitor air quality.
- aranet-core — Core BLE library supporting Aranet4, Aranet2, AranetRn+ (Radon), and Aranet Radiation sensors
- Current readings (CO₂, temperature, pressure, humidity, radon, radiation)
- Historical data download with timestamps
- Device settings (measurement interval, Bluetooth range)
- Auto-reconnection with configurable backoff
- Real-time streaming and event system
- aranet-cli — Command-line interface for quick readings and data export
- Multi-device reading with parallel connections
- Interactive device picker, device aliases
- Passive reading from BLE advertisements
- Progress bars for history download
--since/--untildate filters,--inhgpressure unit- Local data caching with
syncandcachecommands
- aranet-store — Local SQLite-based data persistence
- Incremental history sync (download only new records)
- Query cached data without device connection
- Automatic deduplication of history records
- aranet-tui — Terminal UI dashboard for real-time monitoring
- Multi-device monitoring with auto-refresh
- Sparkline charts with min/max labels
- CO2/radon threshold alerts with audio bell
- Light/dark theme, mouse support, vim keybindings
- Export history to CSV, comparison view
- Device filter, alias management, settings editing
- aranet-gui — Desktop application built with egui
- aranet-wasm — WebAssembly module for browser integration (planned)
| CLI | TUI | GUI |
|---|---|---|
![]() |
![]() |
![]() |
Install the CLI from crates.io:
cargo install aranet-cliOr build from source:
git clone https://github.com/cameronrye/aranet.git
cd aranet
cargo build --releaseAdd aranet-core to your Cargo.toml:
[dependencies]
aranet-core = "0.1"aranet scanaranet read <DEVICE_ADDRESS>aranet history <DEVICE_ADDRESS> --output history.csvaranet info <DEVICE_ADDRESS>aranet read -d device1 -d device2
aranet read -d living-room,bedroom # using aliasesaranet alias set living-room AA:BB:CC:DD:EE:FF
aranet alias list
aranet read -d living-roomaranet doctoraranet/
├── crates/
│ ├── aranet-types/ # Platform-agnostic types (shared)
│ ├── aranet-core/ # Core BLE library
│ ├── aranet-store/ # Local SQLite data persistence
│ ├── aranet-cli/ # CLI tool
│ ├── aranet-tui/ # Terminal dashboard
│ ├── aranet-gui/ # Desktop GUI (egui)
│ └── aranet-wasm/ # WebAssembly module
└── docs/ # Protocol documentation
| Device | Sensors | Current | History | Status |
|---|---|---|---|---|
| Aranet4 | CO₂, Temperature, Pressure, Humidity | Yes | Yes | Fully tested |
| Aranet2 | Temperature, Humidity | Yes | Yes | Supported |
| AranetRn+ (Radon) | Radon, Temperature, Pressure, Humidity | Yes | Yes | Fully tested |
| Aranet Radiation | Dose Rate, Total Dose | Yes | Partial | Supported (history not yet implemented) |
- Rust 1.90+
- Bluetooth adapter with BLE support
- Platform support:
- macOS
- Linux (with BlueZ)
- Windows
Contributions are welcome! Please check the open issues for areas where you can help.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
Here are some features and improvements that would be great additions to the project:
| Feature | Description | Difficulty |
|---|---|---|
| Aranet2 history download | Implement history data retrieval for Aranet2 devices | Medium |
| Aranet Radiation history | Complete history download support for Aranet Radiation sensors | Medium |
| Home Assistant integration | Create a Home Assistant custom component using aranet-core | Medium |
| Prometheus exporter | Add metrics endpoint for Prometheus/Grafana monitoring | Easy |
| MQTT publisher | Publish readings to MQTT broker for IoT integration | Easy |
| InfluxDB export | Direct export to InfluxDB time-series database | Easy |
| Web dashboard | Complete the aranet-wasm module for browser-based monitoring | Hard |
| Calibration support | Add device calibration commands for CO2 sensors | Medium |
| Notification system | Desktop notifications when thresholds are exceeded | Easy |
| Data visualization | Enhanced charting and trend analysis in TUI/GUI | Medium |
If you're interested in tackling any of these, please open an issue to discuss your approach before starting work. We're happy to provide guidance and answer questions!
This project is licensed under the MIT License - see the LICENSE file for details.
- Aranet4-Python - Python implementation that inspired this project
- btleplug - Cross-platform Bluetooth LE library for Rust
Made with ❤️ by Cameron Rye
This project is not affiliated with, endorsed by, or sponsored by Aranet or SAF Tehnika JSC. Aranet is a trademark of SAF Tehnika JSC.


