added the dependency to the project to circumvent crates.io and updated all projects
This commit is contained in:
parent
c591b2c272
commit
50819abc50
31 changed files with 1422 additions and 14 deletions
14
arduboy-rust/src/lib.rs
Normal file
14
arduboy-rust/src/lib.rs
Normal file
|
@ -0,0 +1,14 @@
|
|||
#![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;
|
Loading…
Add table
Add a link
Reference in a new issue