Self developed library to interact with Azure IoT Hub using MQTT protocol
Copy the sample config file
bash
cp examples/config.sample.toml examples/config.toml
Edit values in examples/config.toml with your iot hub host, device and primary key
```rust
extern crate log;
use azureiotsdk::{client::IoTHubClient, message::Message};
use serde::Deserialize;
struct DeviceConfig { hostname: String, deviceid: String, sharedaccess_key: String, }
impl DeviceConfig {
fn fromenv() -> Result
async fn main() { envlogger::fromenv(envlogger::Env::default().defaultfilter_or("info")).init();
let config = DeviceConfig::from_env().unwrap();
let mut client =
IoTHubClient::with_device_key(config.hostname, config.device_id, config.shared_access_key)
.await;
info!("Initialized client");
client
.on_message(|msg| {
println!("Received message {:?}", msg);
})
.await;
let msg = Message::new(b"Hello, world!".to_vec());
client.send_message(msg).await;
std::thread::park();
} ```