[][src]Struct arduinors::Arduino

pub struct Arduino { /* fields omitted */ }

A handle on an Arduino, to communicate with it via the Firmata protocol.

Methods

impl Arduino[src]

pub fn new() -> Result<Arduino, Error>[src]

Creates an Arduino object from the single currently connected Arduino device.

Errors

This function calls arduino::cli::query, and will pass along any errors produced by it.

pub fn digital_write(&mut self, pin: &Pin, state: &State)[src]

pub fn analog_write(&mut self, pin: &Pin, level: Level)[src]

pub fn set_pin_mode(&mut self, pin: &Pin, mode: &Mode)[src]

Auto Trait Implementations

impl Send for Arduino

impl Sync for Arduino

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]