arduinors 0.1.1

Firmata-based interface to an Arduino and the Arduino CLI.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! This module provides an interface for interacting with the Arduino CLI.

mod run;
pub use run::*;

mod query;
pub use query::*;

/// The kinds of errors that can occur as a result of interacting with the Arduino CLI.
#[derive(Clone, Copy, PartialEq, Debug)]
pub enum Error {
    CommandFailure,
    NoDevice,
    MultipleDevices,
    UnexpectedSyntax,
    InvalidSketchPath,
 }