Rust gRPC bindings for arduino-cli.
Bindings are generated based on the protobuf definitions defined here.
This examples demonstrates retrieving the list of connected boards.
Make sure you run arduino-cli daemon
before running this example.
You can run the example via cargo run --example list_boards
.
```Rust use arduinocliclient::commands::arduinocoreclient::ArduinoCoreClient; use arduinocliclient::commands::{BoardListReq, InitReq}; use tonic::Request;
async fn main() -> Result<(), Box
// Start a new instance of the Arduino Core Service
let resp_instance = client
.init(Request::new(InitReq {
library_manager_only: false,
}))
.await?
.into_inner()
.message()
.await?
.expect("Failed to init");
// List the boards currently connected to the computer.
let resp_boards = client
.board_list(Request::new(BoardListReq {
instance: resp_instance.instance,
}))
.await?
.into_inner();
print!("Boards: {:?}", resp_boards.ports);
Ok(())
}
```