update Docs

This commit is contained in:
ZennDev1337 2023-08-15 13:31:46 +02:00
parent 1e8a23a4b1
commit 2edb2f9a5c
46 changed files with 644 additions and 570 deletions

View file

@ -1,6 +1,13 @@
#![cfg(target_arch = "avr")]
#![no_std]
#![feature(c_size_t)]
//! This is the arduboy_rust crate
//! To get started import the [prelude] to your project.
//!
//! Import the module:
//! ```
//! use arduboy_rust::prelude::*;
//! ```
extern crate panic_halt;
pub mod hardware;
@ -10,4 +17,4 @@ mod print;
pub use crate::library::arduboy2::{self, Arduboy2, Color, FONT_SIZE, HEIGHT, WIDTH};
pub use crate::library::arduboy_tone::{self, ArduboyTones};
pub use crate::library::eeprom::{EEPROM, EEPROMBYTE};
pub use crate::library::{c, sprites};
pub use crate::library::{arduino, c, sprites};