3 releases
0.1.2 | Nov 17, 2020 |
---|---|
0.1.1 | Nov 16, 2020 |
0.1.0 | Nov 16, 2020 |
#1023 in Hardware support
7MB
45K
SLoC
gRPC bindings for arduino-cli. Bindings are generated based on the protobuf definitions defined here.
Example
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
.
use arduino_cli_client::commands::arduino_core_client::ArduinoCoreClient;
use arduino_cli_client::commands::{BoardListReq, InitReq};
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut client = ArduinoCoreClient::connect("http://localhost:50051").await?;
// Start a new instance of the Arduino Core Service
let mut init_stream = client
.init(InitReq {
library_manager_only: false,
})
.await?
.into_inner();
let resp_instance = init_stream.message().await?.expect("Failed to init");
// List the boards currently connected to the computer.
let resp_boards = client
.board_list(BoardListReq {
instance: resp_instance.instance,
})
.await?
.into_inner();
print!("Boards: {:?}", resp_boards.ports);
Ok(())
}
Example - Client
The examples/
folder contains a client example that is analogue to arduino-cli/client-example
.
Dependencies
~8.5MB
~146K SLoC