15 lines
390 B
Rust
15 lines
390 B
Rust
|
#![cfg(target_arch = "avr")]
|
||
|
#![no_std]
|
||
|
#![feature(c_size_t)]
|
||
|
extern crate panic_halt;
|
||
|
mod hardware;
|
||
|
mod library;
|
||
|
pub mod prelude;
|
||
|
mod print;
|
||
|
pub use crate::library::arduboy::{Arduboy, Color, FONT_SIZE, HEIGHT, WIDTH};
|
||
|
pub use crate::library::arduboy_tone::Sound;
|
||
|
pub use crate::library::eeprom::EEPROM;
|
||
|
pub use crate::library::{arduboy_tone_pitch, c, sprites};
|
||
|
|
||
|
pub use hardware::buttons;
|