| Crates.io | mabi-knx |
| lib.rs | mabi-knx |
| version | 1.0.2 |
| created_at | 2026-01-25 07:25:22.070293+00 |
| updated_at | 2026-01-25 09:50:55.125681+00 |
| description | Mabinogion - KNXnet/IP simulator |
| homepage | https://github.com/seadonggyun4/mabinogion |
| repository | https://github.com/seadonggyun4/mabinogion |
| max_upload_size | |
| id | 2068329 |
| size | 297,098 |
KNXnet/IP simulator for the Mabinogion industrial protocol simulator.
KNXnet/IP protocol simulator for home and building automation testing.
use mabi_knx::prelude::*;
// Create a KNX device
let config = KnxDeviceConfig::builder()
.individual_address("1.1.1".parse()?)
.port(3671)
.build()?;
let device = KnxDevice::new(config);
device.start().await?;
Licensed under the Apache License, Version 2.0.