Arduino

This library provides a set of reusable components for the Arduino Uno.

Overview

Register and bit definitions

rust use arduino::PORTB; // Register use arduino::PORTB7; // Pin

Prelude

Disable interrupts.

rust without_interrupts(|| { unsafe { write_volatile(DDRB, 0xFF) } })

Timers

Configure a timer.

```rust const CPUFREQUENCYHZ: u64 = 16000000; const DESIREDHZTIM1: f64 = 2.0; const TIM1PRESCALER: u64 = 1024; const INTERRUPTEVERY1HZ1024PRESCALER: u16 = ((CPUFREQUENCYHZ as f64 / (DESIREDHZTIM1 * TIM1_PRESCALER as f64)) as u64 - 1) as u16;

timer1::Timer::new() .waveformgenerationmode(timer1::WaveformGenerationMode::ClearOnTimerMatchOutputCompare) .clocksource(timer1::ClockSource::Prescale1024) .outputcompare1(Some(INTERRUPTEVERY1HZ1024PRESCALER)) .configure(); ```

Set up an interrupt handler that will be called when the timer fires.

```rust

[no_mangle]

pub unsafe extern "avr-interrupt" fn ivrtimer1comparea() { let prevvalue = readvolatile(PORTB); writevolatile(PORTB, prevvalue ^ PINB5); } ```

Hardware Serial Port

Configure the serial port.

```rust const CPUFREQUENCYHZ: u64 = 16000000; const BAUD: u64 = 9600; const UBRR: u16 = (CPUFREQUENCYHZ / 16 / BAUD - 1) as u16;

serial::Serial::new(UBRR) .charactersize(serial::CharacterSize::EightBits) .mode(serial::Mode::Asynchronous) .parity(serial::Parity::Disabled) .stopbits(serial::StopBits::OneBit) .configure(); ```

Transmit a sequence of bytes.

rust for &b in b"OK" { serial::transmit(b); }

Read a byte if there's something available.

rust if let Some(b) = serial::try_receive() { serial::transmit(b); serial::transmit(b); }