[][src]Struct arduinors::Arduino

pub struct Arduino(_);

A handle on an Arduino, for communicating 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]

Writes the given pin state to the given pin of the Arduino.

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

Writes the given pin level to the given pin of the Arduino.

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

Set the given pin of the Arduino to the given mode.

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]