diff --git a/Cargo.lock b/Cargo.lock index 0d8db40..4bab1d2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -44,6 +44,13 @@ dependencies = [ "arduboy-rust", ] +[[package]] +name = "drboy" +version = "0.1.0" +dependencies = [ + "arduboy-rust", +] + [[package]] name = "eeprom" version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml index fa13098..19e2408 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,6 +11,7 @@ members = [ "Examples/Arduboy-Tutorials/demo5", "Examples/Arduboy-Tutorials/demo6", "Examples/pong", + "Examples/drboy", "Examples/rustacean", "Examples/snake", "Project/game", diff --git a/Examples/Arduboy-Tutorials/eeprom-byte/src/lib.rs b/Examples/Arduboy-Tutorials/eeprom-byte/src/lib.rs index b200b77..9b8046a 100644 --- a/Examples/Arduboy-Tutorials/eeprom-byte/src/lib.rs +++ b/Examples/Arduboy-Tutorials/eeprom-byte/src/lib.rs @@ -50,7 +50,7 @@ pub unsafe extern "C" fn loop_() { arduboy.set_cursor(0, 40); arduboy.print(f!(b"eeprom:\0")); - arduboy.print(eeprom.read() as u16); + //arduboy.print(eeprom.read() as u16); arduboy.display(); } diff --git a/Examples/drboy/Cargo.toml b/Examples/drboy/Cargo.toml new file mode 100644 index 0000000..0f34493 --- /dev/null +++ b/Examples/drboy/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "drboy" +version = "0.1.0" +edition = "2021" + +[lib] +crate-type = ["staticlib"] + +[dependencies] + +arduboy-rust = { path = "../../arduboy-rust" } diff --git a/Examples/drboy/src/enemies.rs b/Examples/drboy/src/enemies.rs new file mode 100644 index 0000000..f5d4199 --- /dev/null +++ b/Examples/drboy/src/enemies.rs @@ -0,0 +1,6 @@ +use crate::utils::Position; +pub struct Enemy { + counter: u8, + pos: Position, + bitmap: u8, +} diff --git a/Examples/drboy/src/lib.rs b/Examples/drboy/src/lib.rs new file mode 100644 index 0000000..72cf018 --- /dev/null +++ b/Examples/drboy/src/lib.rs @@ -0,0 +1,43 @@ +#![no_std] +#![allow(non_upper_case_globals)] + +//Include the Arduboy Library +#[allow(unused_imports)] +use arduboy_rust::prelude::*; +#[allow(dead_code)] +const arduboy: Arduboy2 = Arduboy2::new(); +mod enemies; +mod utils; +// Progmem data +progmem!( + static pills: [u8; _] = [ + // width, height, + 8, 8, 0x7e, 0x81, 0x81, 0x81, 0x81, 0x81, 0x81, 0x7e, // TILE 00 + 0x7e, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7e, // TILE 01 + 0x7e, 0xd5, 0xab, 0xd5, 0xab, 0xd5, 0xab, 0x7e, // TILE 02 + ]; + static enemies: [u8; _] = [ + 8, 8, // width, height, + 0xa3, 0x51, 0xa6, 0x51, 0xa1, 0x56, 0xa1, 0x53, // TILE 00 + 0x7e, 0xdf, 0xb3, 0xdf, 0xbf, 0xd3, 0xbf, 0x7e, // TILE 01 + 0x7e, 0xc1, 0xad, 0xc1, 0xa1, 0xcd, 0xa1, 0x7e, // TILE 02 + ]; +); +// dynamic ram variables + +// The setup() function runs once when you turn your Arduboy on +#[no_mangle] +pub unsafe extern "C" fn setup() { + // put your setup code here, to run once: + arduboy.begin(); + arduboy.set_frame_rate(20); + arduboy.clear(); + arduboy.display(); +} + +// The loop() function repeats forever after setup() is done +#[no_mangle] +#[export_name = "loop"] +pub unsafe extern "C" fn loop_() { + // put your main code here, to run repeatedly: +} diff --git a/Examples/drboy/src/utils.rs b/Examples/drboy/src/utils.rs new file mode 100644 index 0000000..3d5834d --- /dev/null +++ b/Examples/drboy/src/utils.rs @@ -0,0 +1,21 @@ +pub struct Position { + x: u8, + y: u8, +} + +pub enum Color { + Black(Position), + White(Position), + Gray(Position), +} +pub enum Direction { + Up, + Right, + Down, + Left, +} +pub struct Pills { + pub first_field: Color, + pub second_field: Color, + pub direction: Direction, +} diff --git a/docs/doc/arduboy_rust/all.html b/docs/doc/arduboy_rust/all.html index 63b0bcd..a4622b9 100644 --- a/docs/doc/arduboy_rust/all.html +++ b/docs/doc/arduboy_rust/all.html @@ -1 +1 @@ -List of all items in this crate

List of all items

Structs

Enums

Traits

Macros

Functions

Type Definitions

Constants

\ No newline at end of file +List of all items in this crate

List of all items

Structs

Enums

Traits

Macros

Functions

Type Definitions

Constants

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy2/constant.FONT_SIZE.html b/docs/doc/arduboy_rust/arduboy2/constant.FONT_SIZE.html index 13366a4..9e6d57d 100644 --- a/docs/doc/arduboy_rust/arduboy2/constant.FONT_SIZE.html +++ b/docs/doc/arduboy_rust/arduboy2/constant.FONT_SIZE.html @@ -1,3 +1,3 @@ -FONT_SIZE in arduboy_rust::arduboy2 - Rust
pub const FONT_SIZE: u8 = 6;
Expand description

The standard font size of the arduboy

+FONT_SIZE in arduboy_rust::arduboy2 - Rust
pub const FONT_SIZE: u8 = 6;
Expand description

The standard font size of the arduboy

this is to calculate with it.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy2/constant.HEIGHT.html b/docs/doc/arduboy_rust/arduboy2/constant.HEIGHT.html index f4c5afc..6920f2e 100644 --- a/docs/doc/arduboy_rust/arduboy2/constant.HEIGHT.html +++ b/docs/doc/arduboy_rust/arduboy2/constant.HEIGHT.html @@ -1,3 +1,3 @@ -HEIGHT in arduboy_rust::arduboy2 - Rust

Constant arduboy_rust::arduboy2::HEIGHT

source ·
pub const HEIGHT: u8 = 64;
Expand description

The standard height of the arduboy

+HEIGHT in arduboy_rust::arduboy2 - Rust

Constant arduboy_rust::arduboy2::HEIGHT

source ·
pub const HEIGHT: u8 = 64;
Expand description

The standard height of the arduboy

this is to calculate with it.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy2/constant.WIDTH.html b/docs/doc/arduboy_rust/arduboy2/constant.WIDTH.html index cfd262b..e0713eb 100644 --- a/docs/doc/arduboy_rust/arduboy2/constant.WIDTH.html +++ b/docs/doc/arduboy_rust/arduboy2/constant.WIDTH.html @@ -1,3 +1,3 @@ -WIDTH in arduboy_rust::arduboy2 - Rust

Constant arduboy_rust::arduboy2::WIDTH

source ·
pub const WIDTH: u8 = 128;
Expand description

The standard width of the arduboy

+WIDTH in arduboy_rust::arduboy2 - Rust

Constant arduboy_rust::arduboy2::WIDTH

source ·
pub const WIDTH: u8 = 128;
Expand description

The standard width of the arduboy

this is to calculate with it.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy2/enum.Color.html b/docs/doc/arduboy_rust/arduboy2/enum.Color.html index 2a79556..42856f2 100644 --- a/docs/doc/arduboy_rust/arduboy2/enum.Color.html +++ b/docs/doc/arduboy_rust/arduboy2/enum.Color.html @@ -1,4 +1,4 @@ -Color in arduboy_rust::arduboy2 - Rust
§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy2/index.html b/docs/doc/arduboy_rust/arduboy2/index.html index 7b523e3..a5d1bfe 100644 --- a/docs/doc/arduboy_rust/arduboy2/index.html +++ b/docs/doc/arduboy_rust/arduboy2/index.html @@ -1,3 +1,3 @@ -arduboy_rust::arduboy2 - Rust

Module arduboy_rust::arduboy2

source ·
Expand description

This is the Module to interact in a save way with the Arduboy2 C++ library.

+arduboy_rust::arduboy2 - Rust

Module arduboy_rust::arduboy2

source ·
Expand description

This is the Module to interact in a save way with the Arduboy2 C++ library.

All of the functions are safe wrapped inside the Arduboy2 struct.

Structs

  • This is the struct to interact in a save way with the Arduboy2 C++ library.
  • This struct is used by a few Arduboy functions.
  • This struct is used by a few Arduboy functions.

Enums

  • This item is to chose between Black or White

Constants

  • The standard font size of the arduboy
  • The standard height of the arduboy
  • The standard width of the arduboy
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy2/struct.Arduboy2.html b/docs/doc/arduboy_rust/arduboy2/struct.Arduboy2.html index f5e28c1..94f9e30 100644 --- a/docs/doc/arduboy_rust/arduboy2/struct.Arduboy2.html +++ b/docs/doc/arduboy_rust/arduboy2/struct.Arduboy2.html @@ -1,4 +1,4 @@ -Arduboy2 in arduboy_rust::arduboy2 - Rust
pub struct Arduboy2 {}
Expand description

This is the struct to interact in a save way with the Arduboy2 C++ library.

+Arduboy2 in arduboy_rust::arduboy2 - Rust
pub struct Arduboy2 {}
Expand description

This is the struct to interact in a save way with the Arduboy2 C++ library.

Implementations§

source§

impl Arduboy2

source

pub const fn new() -> Self

gives you a new instance of the Arduboy2

Example
const arduboy: Arduboy2 = Arduboy2::new();
@@ -349,5 +349,5 @@ true if the specified number of frames has elapsed.

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy2/struct.Point.html b/docs/doc/arduboy_rust/arduboy2/struct.Point.html index de8e853..8b75b7a 100644 --- a/docs/doc/arduboy_rust/arduboy2/struct.Point.html +++ b/docs/doc/arduboy_rust/arduboy2/struct.Point.html @@ -1,4 +1,4 @@ -Point in arduboy_rust::arduboy2 - Rust
pub struct Point {
+Point in arduboy_rust::arduboy2 - Rust
pub struct Point {
     pub x: i16,
     pub y: i16,
 }
Expand description

This struct is used by a few Arduboy functions.

@@ -13,5 +13,5 @@

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy2/struct.Rect.html b/docs/doc/arduboy_rust/arduboy2/struct.Rect.html index 188cb86..e8fd273 100644 --- a/docs/doc/arduboy_rust/arduboy2/struct.Rect.html +++ b/docs/doc/arduboy_rust/arduboy2/struct.Rect.html @@ -1,4 +1,4 @@ -Rect in arduboy_rust::arduboy2 - Rust

Struct arduboy_rust::arduboy2::Rect

source ·
pub struct Rect {
+Rect in arduboy_rust::arduboy2 - Rust

Struct arduboy_rust::arduboy2::Rect

source ·
pub struct Rect {
     pub x: i16,
     pub y: i16,
     pub width: u8,
@@ -17,5 +17,5 @@
 

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0.html index f104ecd..9759113 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0.html @@ -1 +1 @@ -NOTE_A0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A0: u16 = 28;
\ No newline at end of file +NOTE_A0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A0: u16 = 28;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0H.html index fc839da..d8693ee 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0H.html @@ -1 +1 @@ -NOTE_A0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A0H: u16 = _; // 32_796u16
\ No newline at end of file +NOTE_A0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A0H: u16 = _; // 32_796u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1.html index c6a7b4a..8df2add 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1.html @@ -1 +1 @@ -NOTE_A1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A1: u16 = 55;
\ No newline at end of file +NOTE_A1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A1: u16 = 55;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1H.html index aa2c76c..fff5653 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1H.html @@ -1 +1 @@ -NOTE_A1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A1H: u16 = _; // 32_823u16
\ No newline at end of file +NOTE_A1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A1H: u16 = _; // 32_823u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2.html index 00070dc..1104cf7 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2.html @@ -1 +1 @@ -NOTE_A2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A2: u16 = 110;
\ No newline at end of file +NOTE_A2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A2: u16 = 110;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2H.html index 94c5ece..160f7dc 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2H.html @@ -1 +1 @@ -NOTE_A2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A2H: u16 = _; // 32_878u16
\ No newline at end of file +NOTE_A2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A2H: u16 = _; // 32_878u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3.html index b80f96c..b906d67 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3.html @@ -1 +1 @@ -NOTE_A3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A3: u16 = 220;
\ No newline at end of file +NOTE_A3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A3: u16 = 220;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3H.html index a3e77f8..e22b7e7 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3H.html @@ -1 +1 @@ -NOTE_A3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A3H: u16 = _; // 32_988u16
\ No newline at end of file +NOTE_A3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A3H: u16 = _; // 32_988u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4.html index 58c4f9d..96c8214 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4.html @@ -1 +1 @@ -NOTE_A4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A4: u16 = 440;
\ No newline at end of file +NOTE_A4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A4: u16 = 440;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4H.html index 21da961..c846711 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4H.html @@ -1 +1 @@ -NOTE_A4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A4H: u16 = _; // 33_208u16
\ No newline at end of file +NOTE_A4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A4H: u16 = _; // 33_208u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5.html index 794bc08..c58cd62 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5.html @@ -1 +1 @@ -NOTE_A5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A5: u16 = 880;
\ No newline at end of file +NOTE_A5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A5: u16 = 880;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5H.html index bc998c3..0437576 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5H.html @@ -1 +1 @@ -NOTE_A5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A5H: u16 = _; // 33_648u16
\ No newline at end of file +NOTE_A5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A5H: u16 = _; // 33_648u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6.html index 53fac10..6015732 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6.html @@ -1 +1 @@ -NOTE_A6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A6: u16 = 1760;
\ No newline at end of file +NOTE_A6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A6: u16 = 1760;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6H.html index 5425815..e75be26 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6H.html @@ -1 +1 @@ -NOTE_A6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A6H: u16 = _; // 34_528u16
\ No newline at end of file +NOTE_A6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A6H: u16 = _; // 34_528u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7.html index f4aee5b..84f2c84 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7.html @@ -1 +1 @@ -NOTE_A7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A7: u16 = 3520;
\ No newline at end of file +NOTE_A7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A7: u16 = 3520;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7H.html index 52c8e2b..391aaa9 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7H.html @@ -1 +1 @@ -NOTE_A7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A7H: u16 = _; // 36_288u16
\ No newline at end of file +NOTE_A7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A7H: u16 = _; // 36_288u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8.html index cd53e40..e6a6188 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8.html @@ -1 +1 @@ -NOTE_A8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A8: u16 = 7040;
\ No newline at end of file +NOTE_A8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A8: u16 = 7040;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8H.html index b0a5e99..ef46b28 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8H.html @@ -1 +1 @@ -NOTE_A8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A8H: u16 = _; // 39_808u16
\ No newline at end of file +NOTE_A8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A8H: u16 = _; // 39_808u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9.html index daac4ac..1f8b019 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9.html @@ -1 +1 @@ -NOTE_A9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A9: u16 = 14080;
\ No newline at end of file +NOTE_A9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A9: u16 = 14080;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9H.html index 07b9e79..b2c815e 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9H.html @@ -1 +1 @@ -NOTE_A9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A9H: u16 = _; // 46_848u16
\ No newline at end of file +NOTE_A9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A9H: u16 = _; // 46_848u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0.html index a08d7ff..3623528 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0.html @@ -1 +1 @@ -NOTE_AS0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS0: u16 = 29;
\ No newline at end of file +NOTE_AS0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS0: u16 = 29;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0H.html index 6401bcf..d251da1 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0H.html @@ -1 +1 @@ -NOTE_AS0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS0H: u16 = _; // 32_797u16
\ No newline at end of file +NOTE_AS0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS0H: u16 = _; // 32_797u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1.html index f600ea9..4dc54c8 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1.html @@ -1 +1 @@ -NOTE_AS1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS1: u16 = 58;
\ No newline at end of file +NOTE_AS1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS1: u16 = 58;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1H.html index 5d85ff6..abe1a9d 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1H.html @@ -1 +1 @@ -NOTE_AS1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS1H: u16 = _; // 32_826u16
\ No newline at end of file +NOTE_AS1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS1H: u16 = _; // 32_826u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2.html index 1f3feb6..dae1168 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2.html @@ -1 +1 @@ -NOTE_AS2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS2: u16 = 117;
\ No newline at end of file +NOTE_AS2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS2: u16 = 117;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2H.html index ce55bc7..cf3e1ba 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2H.html @@ -1 +1 @@ -NOTE_AS2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS2H: u16 = _; // 32_885u16
\ No newline at end of file +NOTE_AS2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS2H: u16 = _; // 32_885u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3.html index dc1fe7f..5b9a233 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3.html @@ -1 +1 @@ -NOTE_AS3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS3: u16 = 233;
\ No newline at end of file +NOTE_AS3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS3: u16 = 233;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3H.html index adcea2e..a09ab1c 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3H.html @@ -1 +1 @@ -NOTE_AS3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS3H: u16 = _; // 33_001u16
\ No newline at end of file +NOTE_AS3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS3H: u16 = _; // 33_001u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4.html index 3facde0..44ee870 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4.html @@ -1 +1 @@ -NOTE_AS4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS4: u16 = 466;
\ No newline at end of file +NOTE_AS4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS4: u16 = 466;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4H.html index d9a78f5..e067619 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4H.html @@ -1 +1 @@ -NOTE_AS4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS4H: u16 = _; // 33_234u16
\ No newline at end of file +NOTE_AS4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS4H: u16 = _; // 33_234u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5.html index 2546806..d2e43d9 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5.html @@ -1 +1 @@ -NOTE_AS5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS5: u16 = 932;
\ No newline at end of file +NOTE_AS5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS5: u16 = 932;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5H.html index f055361..425009c 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5H.html @@ -1 +1 @@ -NOTE_AS5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS5H: u16 = _; // 33_700u16
\ No newline at end of file +NOTE_AS5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS5H: u16 = _; // 33_700u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6.html index 38e8f69..bd67ea6 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6.html @@ -1 +1 @@ -NOTE_AS6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS6: u16 = 1865;
\ No newline at end of file +NOTE_AS6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS6: u16 = 1865;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6H.html index c5176b8..90569a2 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6H.html @@ -1 +1 @@ -NOTE_AS6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS6H: u16 = _; // 34_633u16
\ No newline at end of file +NOTE_AS6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS6H: u16 = _; // 34_633u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7.html index 9e936fa..9182273 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7.html @@ -1 +1 @@ -NOTE_AS7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS7: u16 = 3729;
\ No newline at end of file +NOTE_AS7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS7: u16 = 3729;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7H.html index 228c1e8..334226c 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7H.html @@ -1 +1 @@ -NOTE_AS7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS7H: u16 = _; // 36_497u16
\ No newline at end of file +NOTE_AS7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS7H: u16 = _; // 36_497u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8.html index 8666de6..d38ca67 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8.html @@ -1 +1 @@ -NOTE_AS8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS8: u16 = 7459;
\ No newline at end of file +NOTE_AS8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS8: u16 = 7459;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8H.html index cf82fd4..2b25925 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8H.html @@ -1 +1 @@ -NOTE_AS8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS8H: u16 = _; // 40_227u16
\ No newline at end of file +NOTE_AS8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS8H: u16 = _; // 40_227u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9.html index 93ba4cb..16294b3 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9.html @@ -1 +1 @@ -NOTE_AS9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS9: u16 = 14917;
\ No newline at end of file +NOTE_AS9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS9: u16 = 14917;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9H.html index fd6eb2a..c97aebc 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9H.html @@ -1 +1 @@ -NOTE_AS9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS9H: u16 = _; // 47_685u16
\ No newline at end of file +NOTE_AS9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS9H: u16 = _; // 47_685u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0.html index fe16856..83306a5 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0.html @@ -1 +1 @@ -NOTE_B0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B0: u16 = 31;
\ No newline at end of file +NOTE_B0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B0: u16 = 31;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0H.html index c83591d..1308304 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0H.html @@ -1 +1 @@ -NOTE_B0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B0H: u16 = _; // 32_799u16
\ No newline at end of file +NOTE_B0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B0H: u16 = _; // 32_799u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1.html index 29e5d69..fe0fce8 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1.html @@ -1 +1 @@ -NOTE_B1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B1: u16 = 62;
\ No newline at end of file +NOTE_B1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B1: u16 = 62;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1H.html index 5c487c1..d61b8c9 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1H.html @@ -1 +1 @@ -NOTE_B1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B1H: u16 = _; // 32_830u16
\ No newline at end of file +NOTE_B1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B1H: u16 = _; // 32_830u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2.html index 3fb7f5e..b12c847 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2.html @@ -1 +1 @@ -NOTE_B2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B2: u16 = 123;
\ No newline at end of file +NOTE_B2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B2: u16 = 123;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2H.html index 2d827a3..d755537 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2H.html @@ -1 +1 @@ -NOTE_B2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B2H: u16 = _; // 32_891u16
\ No newline at end of file +NOTE_B2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B2H: u16 = _; // 32_891u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3.html index b289c50..fc26ea3 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3.html @@ -1 +1 @@ -NOTE_B3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B3: u16 = 247;
\ No newline at end of file +NOTE_B3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B3: u16 = 247;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3H.html index 06f4742..1b8492d 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3H.html @@ -1 +1 @@ -NOTE_B3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B3H: u16 = _; // 33_015u16
\ No newline at end of file +NOTE_B3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B3H: u16 = _; // 33_015u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4.html index 6184ce2..f146d19 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4.html @@ -1 +1 @@ -NOTE_B4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B4: u16 = 494;
\ No newline at end of file +NOTE_B4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B4: u16 = 494;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4H.html index e2b8ab7..ef25713 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4H.html @@ -1 +1 @@ -NOTE_B4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B4H: u16 = _; // 33_262u16
\ No newline at end of file +NOTE_B4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B4H: u16 = _; // 33_262u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5.html index 2aab224..8c0d9aa 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5.html @@ -1 +1 @@ -NOTE_B5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B5: u16 = 988;
\ No newline at end of file +NOTE_B5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B5: u16 = 988;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5H.html index 51aab53..e208297 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5H.html @@ -1 +1 @@ -NOTE_B5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B5H: u16 = _; // 33_756u16
\ No newline at end of file +NOTE_B5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B5H: u16 = _; // 33_756u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6.html index 1a74b68..dc9fd2e 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6.html @@ -1 +1 @@ -NOTE_B6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B6: u16 = 1976;
\ No newline at end of file +NOTE_B6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B6: u16 = 1976;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6H.html index d7d7d6d..09674b1 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6H.html @@ -1 +1 @@ -NOTE_B6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B6H: u16 = _; // 34_744u16
\ No newline at end of file +NOTE_B6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B6H: u16 = _; // 34_744u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7.html index e4761d3..77186b0 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7.html @@ -1 +1 @@ -NOTE_B7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B7: u16 = 3951;
\ No newline at end of file +NOTE_B7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B7: u16 = 3951;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7H.html index 9b28f50..8d8df60 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7H.html @@ -1 +1 @@ -NOTE_B7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B7H: u16 = _; // 36_719u16
\ No newline at end of file +NOTE_B7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B7H: u16 = _; // 36_719u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8.html index 61f4e15..97fbb2c 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8.html @@ -1 +1 @@ -NOTE_B8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B8: u16 = 7902;
\ No newline at end of file +NOTE_B8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B8: u16 = 7902;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8H.html index 3daf17d..6a08323 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8H.html @@ -1 +1 @@ -NOTE_B8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B8H: u16 = _; // 40_670u16
\ No newline at end of file +NOTE_B8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B8H: u16 = _; // 40_670u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9.html index e8d3668..100c29a 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9.html @@ -1 +1 @@ -NOTE_B9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B9: u16 = 15804;
\ No newline at end of file +NOTE_B9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B9: u16 = 15804;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9H.html index 61968e3..8948588 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9H.html @@ -1 +1 @@ -NOTE_B9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B9H: u16 = _; // 48_572u16
\ No newline at end of file +NOTE_B9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B9H: u16 = _; // 48_572u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0.html index e19f9aa..fa20f3c 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0.html @@ -1 +1 @@ -NOTE_C0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C0: u16 = 16;
\ No newline at end of file +NOTE_C0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C0: u16 = 16;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0H.html index 1bc117e..c7f7f94 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0H.html @@ -1 +1 @@ -NOTE_C0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C0H: u16 = _; // 32_784u16
\ No newline at end of file +NOTE_C0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C0H: u16 = _; // 32_784u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1.html index 18df2ba..be08d46 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1.html @@ -1 +1 @@ -NOTE_C1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C1: u16 = 33;
\ No newline at end of file +NOTE_C1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C1: u16 = 33;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1H.html index f384760..d915edf 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1H.html @@ -1 +1 @@ -NOTE_C1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C1H: u16 = _; // 32_801u16
\ No newline at end of file +NOTE_C1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C1H: u16 = _; // 32_801u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2.html index 6b94054..805ee00 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2.html @@ -1 +1 @@ -NOTE_C2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C2: u16 = 65;
\ No newline at end of file +NOTE_C2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C2: u16 = 65;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2H.html index 7b9c1fe..c26a4a1 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2H.html @@ -1 +1 @@ -NOTE_C2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C2H: u16 = _; // 32_833u16
\ No newline at end of file +NOTE_C2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C2H: u16 = _; // 32_833u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3.html index a194bd5..4cff7e2 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3.html @@ -1 +1 @@ -NOTE_C3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C3: u16 = 131;
\ No newline at end of file +NOTE_C3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C3: u16 = 131;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3H.html index dbf02b9..85e0933 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3H.html @@ -1 +1 @@ -NOTE_C3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C3H: u16 = _; // 32_899u16
\ No newline at end of file +NOTE_C3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C3H: u16 = _; // 32_899u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4.html index 09396c1..76cc2a6 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4.html @@ -1 +1 @@ -NOTE_C4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C4: u16 = 262;
\ No newline at end of file +NOTE_C4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C4: u16 = 262;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4H.html index 9341d43..030b516 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4H.html @@ -1 +1 @@ -NOTE_C4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C4H: u16 = _; // 33_030u16
\ No newline at end of file +NOTE_C4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C4H: u16 = _; // 33_030u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5.html index 5c1e940..61e973b 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5.html @@ -1 +1 @@ -NOTE_C5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C5: u16 = 523;
\ No newline at end of file +NOTE_C5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C5: u16 = 523;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5H.html index ecbb650..b799717 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5H.html @@ -1 +1 @@ -NOTE_C5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C5H: u16 = _; // 33_291u16
\ No newline at end of file +NOTE_C5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C5H: u16 = _; // 33_291u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6.html index c23f710..c2669b0 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6.html @@ -1 +1 @@ -NOTE_C6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C6: u16 = 1047;
\ No newline at end of file +NOTE_C6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C6: u16 = 1047;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6H.html index 0c1f0ec..a732ada 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6H.html @@ -1 +1 @@ -NOTE_C6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C6H: u16 = _; // 33_815u16
\ No newline at end of file +NOTE_C6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C6H: u16 = _; // 33_815u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7.html index ceb4aa5..c964e4f 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7.html @@ -1 +1 @@ -NOTE_C7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C7: u16 = 2093;
\ No newline at end of file +NOTE_C7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C7: u16 = 2093;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7H.html index 0328cd6..850fcdd 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7H.html @@ -1 +1 @@ -NOTE_C7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C7H: u16 = _; // 34_861u16
\ No newline at end of file +NOTE_C7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C7H: u16 = _; // 34_861u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8.html index a5564f5..9009ee0 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8.html @@ -1 +1 @@ -NOTE_C8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C8: u16 = 4186;
\ No newline at end of file +NOTE_C8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C8: u16 = 4186;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8H.html index 5cc2be7..90520dd 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8H.html @@ -1 +1 @@ -NOTE_C8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C8H: u16 = _; // 36_954u16
\ No newline at end of file +NOTE_C8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C8H: u16 = _; // 36_954u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9.html index dd924b8..7870816 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9.html @@ -1 +1 @@ -NOTE_C9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C9: u16 = 8372;
\ No newline at end of file +NOTE_C9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C9: u16 = 8372;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9H.html index 4338b49..6868e5e 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9H.html @@ -1 +1 @@ -NOTE_C9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C9H: u16 = _; // 41_140u16
\ No newline at end of file +NOTE_C9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C9H: u16 = _; // 41_140u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0.html index e8e323b..5ecdee2 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0.html @@ -1 +1 @@ -NOTE_CS0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS0: u16 = 17;
\ No newline at end of file +NOTE_CS0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS0: u16 = 17;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0H.html index 03213b2..ddeb4ec 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0H.html @@ -1 +1 @@ -NOTE_CS0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS0H: u16 = _; // 32_785u16
\ No newline at end of file +NOTE_CS0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS0H: u16 = _; // 32_785u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1.html index 646629b..cbe5298 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1.html @@ -1 +1 @@ -NOTE_CS1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS1: u16 = 35;
\ No newline at end of file +NOTE_CS1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS1: u16 = 35;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1H.html index bbf732b..a541fb0 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1H.html @@ -1 +1 @@ -NOTE_CS1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS1H: u16 = _; // 32_803u16
\ No newline at end of file +NOTE_CS1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS1H: u16 = _; // 32_803u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2.html index a8b35fb..2676952 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2.html @@ -1 +1 @@ -NOTE_CS2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS2: u16 = 69;
\ No newline at end of file +NOTE_CS2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS2: u16 = 69;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2H.html index eb6965b..ddd9ffa 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2H.html @@ -1 +1 @@ -NOTE_CS2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS2H: u16 = _; // 32_837u16
\ No newline at end of file +NOTE_CS2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS2H: u16 = _; // 32_837u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3.html index 57fec1b..95a2b00 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3.html @@ -1 +1 @@ -NOTE_CS3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS3: u16 = 139;
\ No newline at end of file +NOTE_CS3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS3: u16 = 139;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3H.html index f63db15..8b546a8 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3H.html @@ -1 +1 @@ -NOTE_CS3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS3H: u16 = _; // 32_907u16
\ No newline at end of file +NOTE_CS3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS3H: u16 = _; // 32_907u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4.html index f1e4256..0a7c599 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4.html @@ -1 +1 @@ -NOTE_CS4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS4: u16 = 277;
\ No newline at end of file +NOTE_CS4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS4: u16 = 277;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4H.html index f0505bb..6f07af0 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4H.html @@ -1 +1 @@ -NOTE_CS4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS4H: u16 = _; // 33_045u16
\ No newline at end of file +NOTE_CS4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS4H: u16 = _; // 33_045u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5.html index 584491b..d2e30cc 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5.html @@ -1 +1 @@ -NOTE_CS5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS5: u16 = 554;
\ No newline at end of file +NOTE_CS5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS5: u16 = 554;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5H.html index e18821c..392b189 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5H.html @@ -1 +1 @@ -NOTE_CS5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS5H: u16 = _; // 33_322u16
\ No newline at end of file +NOTE_CS5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS5H: u16 = _; // 33_322u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6.html index c5efc9f..611e698 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6.html @@ -1 +1 @@ -NOTE_CS6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS6: u16 = 1109;
\ No newline at end of file +NOTE_CS6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS6: u16 = 1109;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6H.html index e8a5428..ef1f129 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6H.html @@ -1 +1 @@ -NOTE_CS6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS6H: u16 = _; // 33_877u16
\ No newline at end of file +NOTE_CS6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS6H: u16 = _; // 33_877u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7.html index 9947340..3d18f62 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7.html @@ -1 +1 @@ -NOTE_CS7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS7: u16 = 2218;
\ No newline at end of file +NOTE_CS7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS7: u16 = 2218;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7H.html index 199d69e..03b3d69 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7H.html @@ -1 +1 @@ -NOTE_CS7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS7H: u16 = _; // 34_986u16
\ No newline at end of file +NOTE_CS7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS7H: u16 = _; // 34_986u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8.html index 35cf6a1..cc86131 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8.html @@ -1 +1 @@ -NOTE_CS8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS8: u16 = 4435;
\ No newline at end of file +NOTE_CS8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS8: u16 = 4435;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8H.html index cc9f260..9e19b43 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8H.html @@ -1 +1 @@ -NOTE_CS8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS8H: u16 = _; // 37_203u16
\ No newline at end of file +NOTE_CS8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS8H: u16 = _; // 37_203u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9.html index d40743e..8b79131 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9.html @@ -1 +1 @@ -NOTE_CS9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS9: u16 = 8870;
\ No newline at end of file +NOTE_CS9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS9: u16 = 8870;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9H.html index 8d29868..01a3292 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9H.html @@ -1 +1 @@ -NOTE_CS9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS9H: u16 = _; // 41_638u16
\ No newline at end of file +NOTE_CS9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS9H: u16 = _; // 41_638u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0.html index 3e22e45..b1e0d1e 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0.html @@ -1 +1 @@ -NOTE_D0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D0: u16 = 18;
\ No newline at end of file +NOTE_D0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D0: u16 = 18;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0H.html index a6458ce..3f7915c 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0H.html @@ -1 +1 @@ -NOTE_D0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D0H: u16 = _; // 32_786u16
\ No newline at end of file +NOTE_D0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D0H: u16 = _; // 32_786u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1.html index db09978..202f165 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1.html @@ -1 +1 @@ -NOTE_D1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D1: u16 = 37;
\ No newline at end of file +NOTE_D1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D1: u16 = 37;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1H.html index 92ebbc2..dbf40cb 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1H.html @@ -1 +1 @@ -NOTE_D1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D1H: u16 = _; // 32_805u16
\ No newline at end of file +NOTE_D1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D1H: u16 = _; // 32_805u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2.html index 80e1886..617e347 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2.html @@ -1 +1 @@ -NOTE_D2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D2: u16 = 73;
\ No newline at end of file +NOTE_D2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D2: u16 = 73;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2H.html index 53df6d8..efbb36a 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2H.html @@ -1 +1 @@ -NOTE_D2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D2H: u16 = _; // 32_841u16
\ No newline at end of file +NOTE_D2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D2H: u16 = _; // 32_841u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3.html index 613a24e..40037b7 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3.html @@ -1 +1 @@ -NOTE_D3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D3: u16 = 147;
\ No newline at end of file +NOTE_D3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D3: u16 = 147;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3H.html index 6c94718..cfb80d5 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3H.html @@ -1 +1 @@ -NOTE_D3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D3H: u16 = _; // 32_915u16
\ No newline at end of file +NOTE_D3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D3H: u16 = _; // 32_915u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4.html index 400b608..45d95df 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4.html @@ -1 +1 @@ -NOTE_D4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D4: u16 = 294;
\ No newline at end of file +NOTE_D4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D4: u16 = 294;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4H.html index 6dd263a..d4167db 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4H.html @@ -1 +1 @@ -NOTE_D4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D4H: u16 = _; // 33_062u16
\ No newline at end of file +NOTE_D4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D4H: u16 = _; // 33_062u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5.html index a77ae15..27f69d2 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5.html @@ -1 +1 @@ -NOTE_D5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D5: u16 = 587;
\ No newline at end of file +NOTE_D5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D5: u16 = 587;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5H.html index 8b17e00..b898d97 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5H.html @@ -1 +1 @@ -NOTE_D5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D5H: u16 = _; // 33_355u16
\ No newline at end of file +NOTE_D5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D5H: u16 = _; // 33_355u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6.html index 0ab8103..087c6d3 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6.html @@ -1 +1 @@ -NOTE_D6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D6: u16 = 1175;
\ No newline at end of file +NOTE_D6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D6: u16 = 1175;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6H.html index d890d46..477695f 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6H.html @@ -1 +1 @@ -NOTE_D6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D6H: u16 = _; // 33_943u16
\ No newline at end of file +NOTE_D6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D6H: u16 = _; // 33_943u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7.html index b8e7c06..cecea86 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7.html @@ -1 +1 @@ -NOTE_D7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D7: u16 = 2349;
\ No newline at end of file +NOTE_D7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D7: u16 = 2349;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7H.html index 5233e8a..bdd3a7c 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7H.html @@ -1 +1 @@ -NOTE_D7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D7H: u16 = _; // 35_117u16
\ No newline at end of file +NOTE_D7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D7H: u16 = _; // 35_117u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8.html index 39689e8..6bdb7a7 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8.html @@ -1 +1 @@ -NOTE_D8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D8: u16 = 4699;
\ No newline at end of file +NOTE_D8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D8: u16 = 4699;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8H.html index 849bf89..12806fd 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8H.html @@ -1 +1 @@ -NOTE_D8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D8H: u16 = _; // 37_467u16
\ No newline at end of file +NOTE_D8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D8H: u16 = _; // 37_467u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9.html index e09b5b6..edf2bba 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9.html @@ -1 +1 @@ -NOTE_D9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D9: u16 = 9397;
\ No newline at end of file +NOTE_D9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D9: u16 = 9397;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9H.html index 0a96e8f..ede0127 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9H.html @@ -1 +1 @@ -NOTE_D9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D9H: u16 = _; // 42_165u16
\ No newline at end of file +NOTE_D9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D9H: u16 = _; // 42_165u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0.html index 9c8f0f1..4ddccf7 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0.html @@ -1 +1 @@ -NOTE_DS0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS0: u16 = 19;
\ No newline at end of file +NOTE_DS0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS0: u16 = 19;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0H.html index 7b1ea7f..b307eba 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0H.html @@ -1 +1 @@ -NOTE_DS0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS0H: u16 = _; // 32_787u16
\ No newline at end of file +NOTE_DS0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS0H: u16 = _; // 32_787u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1.html index 41e370a..2ba6af8 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1.html @@ -1 +1 @@ -NOTE_DS1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS1: u16 = 39;
\ No newline at end of file +NOTE_DS1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS1: u16 = 39;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1H.html index 06c66a9..db78ef5 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1H.html @@ -1 +1 @@ -NOTE_DS1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS1H: u16 = _; // 32_807u16
\ No newline at end of file +NOTE_DS1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS1H: u16 = _; // 32_807u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2.html index 3f41fb0..95e0659 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2.html @@ -1 +1 @@ -NOTE_DS2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS2: u16 = 78;
\ No newline at end of file +NOTE_DS2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS2: u16 = 78;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2H.html index 26ae804..0d45ed0 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2H.html @@ -1 +1 @@ -NOTE_DS2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS2H: u16 = _; // 32_846u16
\ No newline at end of file +NOTE_DS2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS2H: u16 = _; // 32_846u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3.html index 5b09a0a..0b0be35 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3.html @@ -1 +1 @@ -NOTE_DS3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS3: u16 = 156;
\ No newline at end of file +NOTE_DS3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS3: u16 = 156;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3H.html index e0c04e8..0623820 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3H.html @@ -1 +1 @@ -NOTE_DS3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS3H: u16 = _; // 32_924u16
\ No newline at end of file +NOTE_DS3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS3H: u16 = _; // 32_924u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4.html index 9c57365..d3ad7b2 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4.html @@ -1 +1 @@ -NOTE_DS4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS4: u16 = 311;
\ No newline at end of file +NOTE_DS4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS4: u16 = 311;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4H.html index e494e31..a859d4d 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4H.html @@ -1 +1 @@ -NOTE_DS4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS4H: u16 = _; // 33_079u16
\ No newline at end of file +NOTE_DS4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS4H: u16 = _; // 33_079u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5.html index 9352858..1320e27 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5.html @@ -1 +1 @@ -NOTE_DS5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS5: u16 = 622;
\ No newline at end of file +NOTE_DS5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS5: u16 = 622;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5H.html index 9fd72b5..6b938e8 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5H.html @@ -1 +1 @@ -NOTE_DS5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS5H: u16 = _; // 33_390u16
\ No newline at end of file +NOTE_DS5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS5H: u16 = _; // 33_390u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6.html index 1b1fe90..f8b926e 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6.html @@ -1 +1 @@ -NOTE_DS6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS6: u16 = 1245;
\ No newline at end of file +NOTE_DS6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS6: u16 = 1245;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6H.html index c5a062e..7531513 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6H.html @@ -1 +1 @@ -NOTE_DS6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS6H: u16 = _; // 34_013u16
\ No newline at end of file +NOTE_DS6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS6H: u16 = _; // 34_013u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7.html index 1de6d67..2a868bd 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7.html @@ -1 +1 @@ -NOTE_DS7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS7: u16 = 2489;
\ No newline at end of file +NOTE_DS7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS7: u16 = 2489;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7H.html index 85c9aa9..44a6b78 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7H.html @@ -1 +1 @@ -NOTE_DS7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS7H: u16 = _; // 35_257u16
\ No newline at end of file +NOTE_DS7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS7H: u16 = _; // 35_257u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8.html index c082962..7dfcc0c 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8.html @@ -1 +1 @@ -NOTE_DS8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS8: u16 = 4978;
\ No newline at end of file +NOTE_DS8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS8: u16 = 4978;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8H.html index 4312155..f301c39 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8H.html @@ -1 +1 @@ -NOTE_DS8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS8H: u16 = _; // 37_746u16
\ No newline at end of file +NOTE_DS8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS8H: u16 = _; // 37_746u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9.html index 3d3328d..311341e 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9.html @@ -1 +1 @@ -NOTE_DS9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS9: u16 = 9956;
\ No newline at end of file +NOTE_DS9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS9: u16 = 9956;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9H.html index 55ad90f..cb02127 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9H.html @@ -1 +1 @@ -NOTE_DS9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS9H: u16 = _; // 42_724u16
\ No newline at end of file +NOTE_DS9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS9H: u16 = _; // 42_724u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0.html index f53fdd2..30f0659 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0.html @@ -1 +1 @@ -NOTE_E0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E0: u16 = 21;
\ No newline at end of file +NOTE_E0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E0: u16 = 21;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0H.html index 8605c36..ae14332 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0H.html @@ -1 +1 @@ -NOTE_E0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E0H: u16 = _; // 32_789u16
\ No newline at end of file +NOTE_E0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E0H: u16 = _; // 32_789u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1.html index 7642243..598b7fa 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1.html @@ -1 +1 @@ -NOTE_E1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E1: u16 = 41;
\ No newline at end of file +NOTE_E1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E1: u16 = 41;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1H.html index 01acfef..8c1d18e 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1H.html @@ -1 +1 @@ -NOTE_E1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E1H: u16 = _; // 32_809u16
\ No newline at end of file +NOTE_E1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E1H: u16 = _; // 32_809u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2.html index 9fe85ac..efcf8e7 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2.html @@ -1 +1 @@ -NOTE_E2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E2: u16 = 82;
\ No newline at end of file +NOTE_E2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E2: u16 = 82;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2H.html index 037b232..c7ef21b 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2H.html @@ -1 +1 @@ -NOTE_E2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E2H: u16 = _; // 32_850u16
\ No newline at end of file +NOTE_E2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E2H: u16 = _; // 32_850u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3.html index 1974db9..62847bb 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3.html @@ -1 +1 @@ -NOTE_E3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E3: u16 = 165;
\ No newline at end of file +NOTE_E3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E3: u16 = 165;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3H.html index 6ae55c0..e8ab3c8 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3H.html @@ -1 +1 @@ -NOTE_E3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E3H: u16 = _; // 32_933u16
\ No newline at end of file +NOTE_E3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E3H: u16 = _; // 32_933u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4.html index 8701c76..765e2e7 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4.html @@ -1 +1 @@ -NOTE_E4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E4: u16 = 330;
\ No newline at end of file +NOTE_E4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E4: u16 = 330;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4H.html index 7905cf3..0b53b7f 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4H.html @@ -1 +1 @@ -NOTE_E4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E4H: u16 = _; // 33_098u16
\ No newline at end of file +NOTE_E4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E4H: u16 = _; // 33_098u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5.html index 0d2bfe6..877c1ad 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5.html @@ -1 +1 @@ -NOTE_E5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E5: u16 = 659;
\ No newline at end of file +NOTE_E5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E5: u16 = 659;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5H.html index 2abdc13..8ed7e55 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5H.html @@ -1 +1 @@ -NOTE_E5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E5H: u16 = _; // 33_427u16
\ No newline at end of file +NOTE_E5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E5H: u16 = _; // 33_427u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6.html index 058d147..fb10dc2 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6.html @@ -1 +1 @@ -NOTE_E6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E6: u16 = 1319;
\ No newline at end of file +NOTE_E6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E6: u16 = 1319;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6H.html index 655549c..e04f4a4 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6H.html @@ -1 +1 @@ -NOTE_E6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E6H: u16 = _; // 34_087u16
\ No newline at end of file +NOTE_E6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E6H: u16 = _; // 34_087u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7.html index f4d2f8d..ce32808 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7.html @@ -1 +1 @@ -NOTE_E7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E7: u16 = 2637;
\ No newline at end of file +NOTE_E7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E7: u16 = 2637;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7H.html index c691131..1475801 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7H.html @@ -1 +1 @@ -NOTE_E7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E7H: u16 = _; // 35_405u16
\ No newline at end of file +NOTE_E7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E7H: u16 = _; // 35_405u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8.html index 2d202fd..017eea7 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8.html @@ -1 +1 @@ -NOTE_E8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E8: u16 = 5274;
\ No newline at end of file +NOTE_E8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E8: u16 = 5274;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8H.html index fc166f6..0f787db 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8H.html @@ -1 +1 @@ -NOTE_E8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E8H: u16 = _; // 38_042u16
\ No newline at end of file +NOTE_E8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E8H: u16 = _; // 38_042u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9.html index ce0b174..79cbd54 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9.html @@ -1 +1 @@ -NOTE_E9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E9: u16 = 10548;
\ No newline at end of file +NOTE_E9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E9: u16 = 10548;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9H.html index 80dd783..b201f5f 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9H.html @@ -1 +1 @@ -NOTE_E9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E9H: u16 = _; // 43_316u16
\ No newline at end of file +NOTE_E9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E9H: u16 = _; // 43_316u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0.html index bb655e7..e2bc74b 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0.html @@ -1 +1 @@ -NOTE_F0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F0: u16 = 22;
\ No newline at end of file +NOTE_F0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F0: u16 = 22;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0H.html index a6315c5..3cec9bd 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0H.html @@ -1 +1 @@ -NOTE_F0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F0H: u16 = _; // 32_790u16
\ No newline at end of file +NOTE_F0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F0H: u16 = _; // 32_790u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1.html index f6799ee..e53e540 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1.html @@ -1 +1 @@ -NOTE_F1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F1: u16 = 44;
\ No newline at end of file +NOTE_F1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F1: u16 = 44;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1H.html index 0847e01..88acde6 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1H.html @@ -1 +1 @@ -NOTE_F1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F1H: u16 = _; // 32_812u16
\ No newline at end of file +NOTE_F1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F1H: u16 = _; // 32_812u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2.html index 38f3f81..3b6347f 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2.html @@ -1 +1 @@ -NOTE_F2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F2: u16 = 87;
\ No newline at end of file +NOTE_F2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F2: u16 = 87;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2H.html index 3f83bf5..72962eb 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2H.html @@ -1 +1 @@ -NOTE_F2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F2H: u16 = _; // 32_855u16
\ No newline at end of file +NOTE_F2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F2H: u16 = _; // 32_855u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3.html index 5d73b6c..1a7d4ff 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3.html @@ -1 +1 @@ -NOTE_F3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F3: u16 = 175;
\ No newline at end of file +NOTE_F3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F3: u16 = 175;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3H.html index d6e018c..618dbd3 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3H.html @@ -1 +1 @@ -NOTE_F3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F3H: u16 = _; // 32_943u16
\ No newline at end of file +NOTE_F3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F3H: u16 = _; // 32_943u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4.html index cf6c271..88c1588 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4.html @@ -1 +1 @@ -NOTE_F4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F4: u16 = 349;
\ No newline at end of file +NOTE_F4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F4: u16 = 349;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4H.html index 52bd23b..2cb1b18 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4H.html @@ -1 +1 @@ -NOTE_F4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F4H: u16 = _; // 33_117u16
\ No newline at end of file +NOTE_F4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F4H: u16 = _; // 33_117u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5.html index 8985024..8e43495 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5.html @@ -1 +1 @@ -NOTE_F5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F5: u16 = 698;
\ No newline at end of file +NOTE_F5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F5: u16 = 698;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5H.html index b8e0946..15c48f8 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5H.html @@ -1 +1 @@ -NOTE_F5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F5H: u16 = _; // 33_466u16
\ No newline at end of file +NOTE_F5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F5H: u16 = _; // 33_466u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6.html index 19cf131..6f5090d 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6.html @@ -1 +1 @@ -NOTE_F6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F6: u16 = 1397;
\ No newline at end of file +NOTE_F6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F6: u16 = 1397;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6H.html index 3867ee5..1f9cead 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6H.html @@ -1 +1 @@ -NOTE_F6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F6H: u16 = _; // 34_165u16
\ No newline at end of file +NOTE_F6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F6H: u16 = _; // 34_165u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7.html index fd27b2b..5692d07 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7.html @@ -1 +1 @@ -NOTE_F7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F7: u16 = 2794;
\ No newline at end of file +NOTE_F7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F7: u16 = 2794;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7H.html index 2720376..5c2fb96 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7H.html @@ -1 +1 @@ -NOTE_F7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F7H: u16 = _; // 35_562u16
\ No newline at end of file +NOTE_F7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F7H: u16 = _; // 35_562u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8.html index 5ab800b..d708792 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8.html @@ -1 +1 @@ -NOTE_F8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F8: u16 = 5588;
\ No newline at end of file +NOTE_F8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F8: u16 = 5588;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8H.html index ff264ce..eb44fb1 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8H.html @@ -1 +1 @@ -NOTE_F8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F8H: u16 = _; // 38_356u16
\ No newline at end of file +NOTE_F8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F8H: u16 = _; // 38_356u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9.html index 22efb8e..097e4eb 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9.html @@ -1 +1 @@ -NOTE_F9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F9: u16 = 11175;
\ No newline at end of file +NOTE_F9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F9: u16 = 11175;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9H.html index 66b59a6..2d47c65 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9H.html @@ -1 +1 @@ -NOTE_F9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F9H: u16 = _; // 43_943u16
\ No newline at end of file +NOTE_F9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F9H: u16 = _; // 43_943u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0.html index 578792d..4cffc7b 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0.html @@ -1 +1 @@ -NOTE_FS0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS0: u16 = 23;
\ No newline at end of file +NOTE_FS0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS0: u16 = 23;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0H.html index 091bd19..d577516 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0H.html @@ -1 +1 @@ -NOTE_FS0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS0H: u16 = _; // 32_791u16
\ No newline at end of file +NOTE_FS0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS0H: u16 = _; // 32_791u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1.html index dad3ce4..c5fda18 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1.html @@ -1 +1 @@ -NOTE_FS1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS1: u16 = 46;
\ No newline at end of file +NOTE_FS1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS1: u16 = 46;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1H.html index 5c17060..e97740c 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1H.html @@ -1 +1 @@ -NOTE_FS1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS1H: u16 = _; // 32_814u16
\ No newline at end of file +NOTE_FS1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS1H: u16 = _; // 32_814u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2.html index bb56999..6eae83c 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2.html @@ -1 +1 @@ -NOTE_FS2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS2: u16 = 93;
\ No newline at end of file +NOTE_FS2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS2: u16 = 93;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2H.html index b954be5..72095e2 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2H.html @@ -1 +1 @@ -NOTE_FS2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS2H: u16 = _; // 32_861u16
\ No newline at end of file +NOTE_FS2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS2H: u16 = _; // 32_861u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3.html index 81f9895..6eef8f1 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3.html @@ -1 +1 @@ -NOTE_FS3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS3: u16 = 185;
\ No newline at end of file +NOTE_FS3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS3: u16 = 185;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3H.html index 29b158c..db63637 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3H.html @@ -1 +1 @@ -NOTE_FS3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS3H: u16 = _; // 32_943u16
\ No newline at end of file +NOTE_FS3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS3H: u16 = _; // 32_943u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4.html index 81cd167..815e495 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4.html @@ -1 +1 @@ -NOTE_FS4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS4: u16 = 370;
\ No newline at end of file +NOTE_FS4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS4: u16 = 370;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4H.html index 0878c93..5a2e68b 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4H.html @@ -1 +1 @@ -NOTE_FS4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS4H: u16 = _; // 33_138u16
\ No newline at end of file +NOTE_FS4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS4H: u16 = _; // 33_138u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5.html index 16076c6..035d990 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5.html @@ -1 +1 @@ -NOTE_FS5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS5: u16 = 740;
\ No newline at end of file +NOTE_FS5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS5: u16 = 740;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5H.html index f0ed8d9..1326e47 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5H.html @@ -1 +1 @@ -NOTE_FS5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS5H: u16 = _; // 33_508u16
\ No newline at end of file +NOTE_FS5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS5H: u16 = _; // 33_508u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6.html index b481722..38733ca 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6.html @@ -1 +1 @@ -NOTE_FS6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS6: u16 = 1480;
\ No newline at end of file +NOTE_FS6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS6: u16 = 1480;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6H.html index 6b92fb3..7b68a89 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6H.html @@ -1 +1 @@ -NOTE_FS6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS6H: u16 = _; // 34_248u16
\ No newline at end of file +NOTE_FS6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS6H: u16 = _; // 34_248u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7.html index c0861b5..f72a0b4 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7.html @@ -1 +1 @@ -NOTE_FS7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS7: u16 = 2960;
\ No newline at end of file +NOTE_FS7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS7: u16 = 2960;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7H.html index c271a09..35b3a31 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7H.html @@ -1 +1 @@ -NOTE_FS7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS7H: u16 = _; // 35_728u16
\ No newline at end of file +NOTE_FS7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS7H: u16 = _; // 35_728u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8.html index a283532..16ad18d 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8.html @@ -1 +1 @@ -NOTE_FS8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS8: u16 = 5920;
\ No newline at end of file +NOTE_FS8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS8: u16 = 5920;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8H.html index 7504723..acf8f56 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8H.html @@ -1 +1 @@ -NOTE_FS8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS8H: u16 = _; // 38_688u16
\ No newline at end of file +NOTE_FS8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS8H: u16 = _; // 38_688u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9.html index e546ddf..4b869d3 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9.html @@ -1 +1 @@ -NOTE_FS9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS9: u16 = 11840;
\ No newline at end of file +NOTE_FS9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS9: u16 = 11840;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9H.html index f6549c1..6b00d87 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9H.html @@ -1 +1 @@ -NOTE_FS9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS9H: u16 = _; // 44_608u16
\ No newline at end of file +NOTE_FS9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS9H: u16 = _; // 44_608u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0.html index 39857cb..7f572f6 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0.html @@ -1 +1 @@ -NOTE_G0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G0: u16 = 25;
\ No newline at end of file +NOTE_G0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G0: u16 = 25;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0H.html index 20ae91a..556552d 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0H.html @@ -1 +1 @@ -NOTE_G0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G0H: u16 = _; // 32_793u16
\ No newline at end of file +NOTE_G0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G0H: u16 = _; // 32_793u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1.html index 535f55c..426944b 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1.html @@ -1 +1 @@ -NOTE_G1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G1: u16 = 49;
\ No newline at end of file +NOTE_G1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G1: u16 = 49;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1H.html index 72bd469..1c8c2c7 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1H.html @@ -1 +1 @@ -NOTE_G1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G1H: u16 = _; // 32_817u16
\ No newline at end of file +NOTE_G1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G1H: u16 = _; // 32_817u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2.html index 0317780..c5ce73c 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2.html @@ -1 +1 @@ -NOTE_G2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G2: u16 = 98;
\ No newline at end of file +NOTE_G2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G2: u16 = 98;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2H.html index a2438f4..5542257 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2H.html @@ -1 +1 @@ -NOTE_G2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G2H: u16 = _; // 32_866u16
\ No newline at end of file +NOTE_G2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G2H: u16 = _; // 32_866u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3.html index 3c3b64b..55cf7d8 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3.html @@ -1 +1 @@ -NOTE_G3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G3: u16 = 196;
\ No newline at end of file +NOTE_G3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G3: u16 = 196;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3H.html index 401f66d..19a59ac 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3H.html @@ -1 +1 @@ -NOTE_G3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G3H: u16 = _; // 32_964u16
\ No newline at end of file +NOTE_G3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G3H: u16 = _; // 32_964u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4.html index 85baf3a..1d30a20 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4.html @@ -1 +1 @@ -NOTE_G4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G4: u16 = 392;
\ No newline at end of file +NOTE_G4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G4: u16 = 392;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4H.html index d05cc78..de084e2 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4H.html @@ -1 +1 @@ -NOTE_G4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G4H: u16 = _; // 33_160u16
\ No newline at end of file +NOTE_G4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G4H: u16 = _; // 33_160u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5.html index ea6431c..055ae99 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5.html @@ -1 +1 @@ -NOTE_G5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G5: u16 = 784;
\ No newline at end of file +NOTE_G5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G5: u16 = 784;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5H.html index ecc1bd3..7c903c2 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5H.html @@ -1 +1 @@ -NOTE_G5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G5H: u16 = _; // 33_552u16
\ No newline at end of file +NOTE_G5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G5H: u16 = _; // 33_552u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6.html index 08353b9..f90c715 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6.html @@ -1 +1 @@ -NOTE_G6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G6: u16 = 1568;
\ No newline at end of file +NOTE_G6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G6: u16 = 1568;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6H.html index 6b77762..9948472 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6H.html @@ -1 +1 @@ -NOTE_G6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G6H: u16 = _; // 34_336u16
\ No newline at end of file +NOTE_G6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G6H: u16 = _; // 34_336u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7.html index b5381a8..066cde5 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7.html @@ -1 +1 @@ -NOTE_G7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G7: u16 = 3136;
\ No newline at end of file +NOTE_G7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G7: u16 = 3136;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7H.html index 8682b14..3f495f9 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7H.html @@ -1 +1 @@ -NOTE_G7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G7H: u16 = _; // 35_904u16
\ No newline at end of file +NOTE_G7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G7H: u16 = _; // 35_904u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8.html index 276b011..aa7f92a 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8.html @@ -1 +1 @@ -NOTE_G8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G8: u16 = 6272;
\ No newline at end of file +NOTE_G8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G8: u16 = 6272;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8H.html index 571e00d..cda62e6 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8H.html @@ -1 +1 @@ -NOTE_G8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G8H: u16 = _; // 39_040u16
\ No newline at end of file +NOTE_G8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G8H: u16 = _; // 39_040u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9.html index 1273a98..4036625 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9.html @@ -1 +1 @@ -NOTE_G9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G9: u16 = 12544;
\ No newline at end of file +NOTE_G9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G9: u16 = 12544;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9H.html index 6acec46..6ddb24b 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9H.html @@ -1 +1 @@ -NOTE_G9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G9H: u16 = _; // 45_312u16
\ No newline at end of file +NOTE_G9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G9H: u16 = _; // 45_312u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0.html index 897fa62..ac60414 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0.html @@ -1 +1 @@ -NOTE_GS0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS0: u16 = 26;
\ No newline at end of file +NOTE_GS0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS0: u16 = 26;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0H.html index 8e4df3e..bef5549 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0H.html @@ -1 +1 @@ -NOTE_GS0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS0H: u16 = _; // 32_794u16
\ No newline at end of file +NOTE_GS0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS0H: u16 = _; // 32_794u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1.html index c381dd8..338cfe0 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1.html @@ -1 +1 @@ -NOTE_GS1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS1: u16 = 52;
\ No newline at end of file +NOTE_GS1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS1: u16 = 52;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1H.html index 8dc5475..ae5182b 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1H.html @@ -1 +1 @@ -NOTE_GS1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS1H: u16 = _; // 32_820u16
\ No newline at end of file +NOTE_GS1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS1H: u16 = _; // 32_820u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2.html index 6988536..6f5b1ed 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2.html @@ -1 +1 @@ -NOTE_GS2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS2: u16 = 104;
\ No newline at end of file +NOTE_GS2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS2: u16 = 104;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2H.html index f03ad44..83e301d 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2H.html @@ -1 +1 @@ -NOTE_GS2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS2H: u16 = _; // 32_872u16
\ No newline at end of file +NOTE_GS2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS2H: u16 = _; // 32_872u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3.html index 8dee61b..4de5196 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3.html @@ -1 +1 @@ -NOTE_GS3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS3: u16 = 208;
\ No newline at end of file +NOTE_GS3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS3: u16 = 208;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3H.html index b448309..9d27864 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3H.html @@ -1 +1 @@ -NOTE_GS3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS3H: u16 = _; // 32_976u16
\ No newline at end of file +NOTE_GS3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS3H: u16 = _; // 32_976u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4.html index 2badec1..9f7a54d 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4.html @@ -1 +1 @@ -NOTE_GS4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS4: u16 = 415;
\ No newline at end of file +NOTE_GS4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS4: u16 = 415;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4H.html index f3b9f05..bf0a201 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4H.html @@ -1 +1 @@ -NOTE_GS4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS4H: u16 = _; // 33_183u16
\ No newline at end of file +NOTE_GS4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS4H: u16 = _; // 33_183u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5.html index 001e477..1b6ac59 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5.html @@ -1 +1 @@ -NOTE_GS5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS5: u16 = 831;
\ No newline at end of file +NOTE_GS5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS5: u16 = 831;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5H.html index 5eab798..9173bfb 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5H.html @@ -1 +1 @@ -NOTE_GS5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS5H: u16 = _; // 33_599u16
\ No newline at end of file +NOTE_GS5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS5H: u16 = _; // 33_599u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6.html index d2348a1..cc0a1df 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6.html @@ -1 +1 @@ -NOTE_GS6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS6: u16 = 1661;
\ No newline at end of file +NOTE_GS6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS6: u16 = 1661;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6H.html index bc05d70..596ada4 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6H.html @@ -1 +1 @@ -NOTE_GS6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS6H: u16 = _; // 34_429u16
\ No newline at end of file +NOTE_GS6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS6H: u16 = _; // 34_429u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7.html index 7b4b408..6d0ed12 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7.html @@ -1 +1 @@ -NOTE_GS7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS7: u16 = 3322;
\ No newline at end of file +NOTE_GS7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS7: u16 = 3322;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7H.html index ff3d2bc..89c678e 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7H.html @@ -1 +1 @@ -NOTE_GS7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS7H: u16 = _; // 36_090u16
\ No newline at end of file +NOTE_GS7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS7H: u16 = _; // 36_090u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8.html index e98c7f5..736ce15 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8.html @@ -1 +1 @@ -NOTE_GS8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS8: u16 = 6645;
\ No newline at end of file +NOTE_GS8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS8: u16 = 6645;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8H.html index 92b8ed3..3e272a4 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8H.html @@ -1 +1 @@ -NOTE_GS8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS8H: u16 = _; // 39_413u16
\ No newline at end of file +NOTE_GS8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS8H: u16 = _; // 39_413u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9.html index 91ff3e5..0d723cf 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9.html @@ -1 +1 @@ -NOTE_GS9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS9: u16 = 13290;
\ No newline at end of file +NOTE_GS9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS9: u16 = 13290;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9H.html index eb7661d..725a8c9 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9H.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9H.html @@ -1 +1 @@ -NOTE_GS9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS9H: u16 = _; // 46_058u16
\ No newline at end of file +NOTE_GS9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS9H: u16 = _; // 46_058u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_REST.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_REST.html index fbcc1c9..bbfb777 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_REST.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_REST.html @@ -1 +1 @@ -NOTE_REST in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_REST: u16 = 0;
\ No newline at end of file +NOTE_REST in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_REST: u16 = 0;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONES_END.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONES_END.html index d903025..d7b2597 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONES_END.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONES_END.html @@ -1 +1 @@ -TONES_END in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const TONES_END: u16 = 0x8000;
\ No newline at end of file +TONES_END in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const TONES_END: u16 = 0x8000;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONES_REPEAT.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONES_REPEAT.html index 42e8293..c101a1c 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONES_REPEAT.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONES_REPEAT.html @@ -1 +1 @@ -TONES_REPEAT in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const TONES_REPEAT: u16 = 0x8001;
\ No newline at end of file +TONES_REPEAT in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const TONES_REPEAT: u16 = 0x8001;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONE_HIGH_VOLUME.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONE_HIGH_VOLUME.html index 6998c39..d79ec87 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONE_HIGH_VOLUME.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONE_HIGH_VOLUME.html @@ -1 +1 @@ -TONE_HIGH_VOLUME in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const TONE_HIGH_VOLUME: u16 = 0x8000;
\ No newline at end of file +TONE_HIGH_VOLUME in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const TONE_HIGH_VOLUME: u16 = 0x8000;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_HIGH.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_HIGH.html index 3908218..5f2da64 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_HIGH.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_HIGH.html @@ -1 +1 @@ -VOLUME_ALWAYS_HIGH in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const VOLUME_ALWAYS_HIGH: u8 = 2;
\ No newline at end of file +VOLUME_ALWAYS_HIGH in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const VOLUME_ALWAYS_HIGH: u8 = 2;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_NORMAL.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_NORMAL.html index 57537eb..48f0dd5 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_NORMAL.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_NORMAL.html @@ -1 +1 @@ -VOLUME_ALWAYS_NORMAL in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const VOLUME_ALWAYS_NORMAL: u8 = 1;
\ No newline at end of file +VOLUME_ALWAYS_NORMAL in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const VOLUME_ALWAYS_NORMAL: u8 = 1;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_IN_TONE.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_IN_TONE.html index 2059ac9..440d7dc 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_IN_TONE.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_IN_TONE.html @@ -1 +1 @@ -VOLUME_IN_TONE in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const VOLUME_IN_TONE: u8 = 0;
\ No newline at end of file +VOLUME_IN_TONE in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
pub const VOLUME_IN_TONE: u8 = 0;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/index.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/index.html index 4f0e955..de87856 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/index.html +++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/index.html @@ -1,2 +1,2 @@ -arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
Expand description

A list of all tones available and used by the Sounds library Arduboy2Tones

+arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
Expand description

A list of all tones available and used by the Sounds library Arduboy2Tones

Constants

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/index.html b/docs/doc/arduboy_rust/arduboy_tone/index.html index df72a59..218bb3f 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/index.html +++ b/docs/doc/arduboy_rust/arduboy_tone/index.html @@ -1,2 +1,2 @@ -arduboy_rust::arduboy_tone - Rust
Expand description

This is the Module to interact in a save way with the ArduboyTones C++ library.

+arduboy_rust::arduboy_tone - Rust
Expand description

This is the Module to interact in a save way with the ArduboyTones C++ library.

Modules

  • A list of all tones available and used by the Sounds library Arduboy2Tones

Structs

  • This is the struct to interact in a save way with the ArduboyTones C++ library.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduboy_tone/struct.ArduboyTones.html b/docs/doc/arduboy_rust/arduboy_tone/struct.ArduboyTones.html index 136595a..5f30fab 100644 --- a/docs/doc/arduboy_rust/arduboy_tone/struct.ArduboyTones.html +++ b/docs/doc/arduboy_rust/arduboy_tone/struct.ArduboyTones.html @@ -1,4 +1,4 @@ -ArduboyTones in arduboy_rust::arduboy_tone - Rust
pub struct ArduboyTones {}
Expand description

This is the struct to interact in a save way with the ArduboyTones C++ library.

+ArduboyTones in arduboy_rust::arduboy_tone - Rust
pub struct ArduboyTones {}
Expand description

This is the struct to interact in a save way with the ArduboyTones C++ library.

Implementations§

source§

impl ArduboyTones

source

pub const fn new() -> ArduboyTones

Get a new instance of ArduboyTones

Example
const sound: ArduboyTones = ArduboyTones::new();
@@ -89,5 +89,5 @@ itself.

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduino/fn.delay.html b/docs/doc/arduboy_rust/arduino/fn.delay.html index 04df5a3..a9c928a 100644 --- a/docs/doc/arduboy_rust/arduino/fn.delay.html +++ b/docs/doc/arduboy_rust/arduino/fn.delay.html @@ -1,2 +1,2 @@ -delay in arduboy_rust::arduino - Rust

Function arduboy_rust::arduino::delay

source ·
pub fn delay(ms: u32)
Expand description

A Arduino function to pause the cpu circles for a given amount of ms

+delay in arduboy_rust::arduino - Rust

Function arduboy_rust::arduino::delay

source ·
pub fn delay(ms: u32)
Expand description

A Arduino function to pause the cpu circles for a given amount of ms

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduino/fn.random_between.html b/docs/doc/arduboy_rust/arduino/fn.random_between.html index 56ff91a..d36b0dd 100644 --- a/docs/doc/arduboy_rust/arduino/fn.random_between.html +++ b/docs/doc/arduboy_rust/arduino/fn.random_between.html @@ -1,3 +1,3 @@ -random_between in arduboy_rust::arduino - Rust
pub fn random_between(min: i32, max: i32) -> i32
Expand description

A Arduino function to get a random number between 2 numbers +random_between in arduboy_rust::arduino - Rust

pub fn random_between(min: i32, max: i32) -> i32
Expand description

A Arduino function to get a random number between 2 numbers seed based

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduino/fn.random_less_than.html b/docs/doc/arduboy_rust/arduino/fn.random_less_than.html index 358e700..49403eb 100644 --- a/docs/doc/arduboy_rust/arduino/fn.random_less_than.html +++ b/docs/doc/arduboy_rust/arduino/fn.random_less_than.html @@ -1,3 +1,3 @@ -random_less_than in arduboy_rust::arduino - Rust
pub fn random_less_than(max: i32) -> i32
Expand description

A Arduino function to get a random number smaller than the number given +random_less_than in arduboy_rust::arduino - Rust

pub fn random_less_than(max: i32) -> i32
Expand description

A Arduino function to get a random number smaller than the number given seed based

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/arduino/index.html b/docs/doc/arduboy_rust/arduino/index.html index 1839fb4..f2d2ad1 100644 --- a/docs/doc/arduboy_rust/arduino/index.html +++ b/docs/doc/arduboy_rust/arduino/index.html @@ -1,4 +1,4 @@ -arduboy_rust::arduino - Rust

Module arduboy_rust::arduino

source ·
Expand description

This is the Module to interact in a save way with the Arduino C++ library.

+arduboy_rust::arduino - Rust

Module arduboy_rust::arduino

source ·
Expand description

This is the Module to interact in a save way with the Arduino C++ library.

Functions

  • A Arduino function to pause the cpu circles for a given amount of ms
  • A Arduino function to get a random number between 2 numbers seed based
  • A Arduino function to get a random number smaller than the number given seed based
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/c/fn.strlen.html b/docs/doc/arduboy_rust/c/fn.strlen.html index 2d304fd..fc7bcdf 100644 --- a/docs/doc/arduboy_rust/c/fn.strlen.html +++ b/docs/doc/arduboy_rust/c/fn.strlen.html @@ -1,2 +1,2 @@ -strlen in arduboy_rust::c - Rust

Function arduboy_rust::c::strlen

source ·
pub fn strlen(cstr: *const i8) -> usize
Expand description

A C function to get the length of a string

+strlen in arduboy_rust::c - Rust

Function arduboy_rust::c::strlen

source ·
pub fn strlen(cstr: *const i8) -> usize
Expand description

A C function to get the length of a string

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/c/index.html b/docs/doc/arduboy_rust/c/index.html index 26ea2d9..22b867a 100644 --- a/docs/doc/arduboy_rust/c/index.html +++ b/docs/doc/arduboy_rust/c/index.html @@ -1,2 +1,2 @@ -arduboy_rust::c - Rust

Module arduboy_rust::c

source ·
Expand description

Clib functions you can use on the Arduboy

+arduboy_rust::c - Rust

Module arduboy_rust::c

source ·
Expand description

Clib functions you can use on the Arduboy

Functions

  • A C function to get the length of a string
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/constant.FONT_SIZE.html b/docs/doc/arduboy_rust/constant.FONT_SIZE.html index aabfa17..be12b0f 100644 --- a/docs/doc/arduboy_rust/constant.FONT_SIZE.html +++ b/docs/doc/arduboy_rust/constant.FONT_SIZE.html @@ -1,3 +1,3 @@ -FONT_SIZE in arduboy_rust - Rust

Constant arduboy_rust::FONT_SIZE

source ·
pub const FONT_SIZE: u8 = 6;
Expand description

The standard font size of the arduboy

+FONT_SIZE in arduboy_rust - Rust

Constant arduboy_rust::FONT_SIZE

source ·
pub const FONT_SIZE: u8 = 6;
Expand description

The standard font size of the arduboy

this is to calculate with it.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/constant.HEIGHT.html b/docs/doc/arduboy_rust/constant.HEIGHT.html index 8f290da..ced88e3 100644 --- a/docs/doc/arduboy_rust/constant.HEIGHT.html +++ b/docs/doc/arduboy_rust/constant.HEIGHT.html @@ -1,3 +1,3 @@ -HEIGHT in arduboy_rust - Rust

Constant arduboy_rust::HEIGHT

source ·
pub const HEIGHT: u8 = 64;
Expand description

The standard height of the arduboy

+HEIGHT in arduboy_rust - Rust

Constant arduboy_rust::HEIGHT

source ·
pub const HEIGHT: u8 = 64;
Expand description

The standard height of the arduboy

this is to calculate with it.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/constant.WIDTH.html b/docs/doc/arduboy_rust/constant.WIDTH.html index 137f0c9..5fd7ed9 100644 --- a/docs/doc/arduboy_rust/constant.WIDTH.html +++ b/docs/doc/arduboy_rust/constant.WIDTH.html @@ -1,3 +1,3 @@ -WIDTH in arduboy_rust - Rust

Constant arduboy_rust::WIDTH

source ·
pub const WIDTH: u8 = 128;
Expand description

The standard width of the arduboy

+WIDTH in arduboy_rust - Rust

Constant arduboy_rust::WIDTH

source ·
pub const WIDTH: u8 = 128;
Expand description

The standard width of the arduboy

this is to calculate with it.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/enum.Color.html b/docs/doc/arduboy_rust/enum.Color.html index 7374c46..f8a42c3 100644 --- a/docs/doc/arduboy_rust/enum.Color.html +++ b/docs/doc/arduboy_rust/enum.Color.html @@ -1,4 +1,4 @@ -Color in arduboy_rust - Rust
§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.A.html b/docs/doc/arduboy_rust/hardware/buttons/constant.A.html index b19d768..c5dcd84 100644 --- a/docs/doc/arduboy_rust/hardware/buttons/constant.A.html +++ b/docs/doc/arduboy_rust/hardware/buttons/constant.A.html @@ -1,2 +1,2 @@ -A in arduboy_rust::hardware::buttons - Rust

Constant arduboy_rust::hardware::buttons::A

source ·
pub const A: ButtonSet;
Expand description

Just a const for the A button

+A in arduboy_rust::hardware::buttons - Rust

Constant arduboy_rust::hardware::buttons::A

source ·
pub const A: ButtonSet;
Expand description

Just a const for the A button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.A_BUTTON.html b/docs/doc/arduboy_rust/hardware/buttons/constant.A_BUTTON.html index d630d74..c46ff6a 100644 --- a/docs/doc/arduboy_rust/hardware/buttons/constant.A_BUTTON.html +++ b/docs/doc/arduboy_rust/hardware/buttons/constant.A_BUTTON.html @@ -1,2 +1,2 @@ -A_BUTTON in arduboy_rust::hardware::buttons - Rust
pub const A_BUTTON: ButtonSet;
Expand description

Just a const for the A button

+A_BUTTON in arduboy_rust::hardware::buttons - Rust
pub const A_BUTTON: ButtonSet;
Expand description

Just a const for the A button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.B.html b/docs/doc/arduboy_rust/hardware/buttons/constant.B.html index 8564f90..0becc6a 100644 --- a/docs/doc/arduboy_rust/hardware/buttons/constant.B.html +++ b/docs/doc/arduboy_rust/hardware/buttons/constant.B.html @@ -1,2 +1,2 @@ -B in arduboy_rust::hardware::buttons - Rust

Constant arduboy_rust::hardware::buttons::B

source ·
pub const B: ButtonSet;
Expand description

Just a const for the B button

+B in arduboy_rust::hardware::buttons - Rust

Constant arduboy_rust::hardware::buttons::B

source ·
pub const B: ButtonSet;
Expand description

Just a const for the B button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.B_BUTTON.html b/docs/doc/arduboy_rust/hardware/buttons/constant.B_BUTTON.html index 7e77162..31c0038 100644 --- a/docs/doc/arduboy_rust/hardware/buttons/constant.B_BUTTON.html +++ b/docs/doc/arduboy_rust/hardware/buttons/constant.B_BUTTON.html @@ -1,2 +1,2 @@ -B_BUTTON in arduboy_rust::hardware::buttons - Rust
pub const B_BUTTON: ButtonSet;
Expand description

Just a const for the B button

+B_BUTTON in arduboy_rust::hardware::buttons - Rust
pub const B_BUTTON: ButtonSet;
Expand description

Just a const for the B button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.DOWN.html b/docs/doc/arduboy_rust/hardware/buttons/constant.DOWN.html index 4f69d48..6fb3966 100644 --- a/docs/doc/arduboy_rust/hardware/buttons/constant.DOWN.html +++ b/docs/doc/arduboy_rust/hardware/buttons/constant.DOWN.html @@ -1,2 +1,2 @@ -DOWN in arduboy_rust::hardware::buttons - Rust
pub const DOWN: ButtonSet;
Expand description

Just a const for the DOWN button

+DOWN in arduboy_rust::hardware::buttons - Rust
pub const DOWN: ButtonSet;
Expand description

Just a const for the DOWN button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.DOWN_BUTTON.html b/docs/doc/arduboy_rust/hardware/buttons/constant.DOWN_BUTTON.html index 183ab42..a0a7268 100644 --- a/docs/doc/arduboy_rust/hardware/buttons/constant.DOWN_BUTTON.html +++ b/docs/doc/arduboy_rust/hardware/buttons/constant.DOWN_BUTTON.html @@ -1,2 +1,2 @@ -DOWN_BUTTON in arduboy_rust::hardware::buttons - Rust
pub const DOWN_BUTTON: ButtonSet;
Expand description

Just a const for the DOWN button

+DOWN_BUTTON in arduboy_rust::hardware::buttons - Rust
pub const DOWN_BUTTON: ButtonSet;
Expand description

Just a const for the DOWN button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.LEFT.html b/docs/doc/arduboy_rust/hardware/buttons/constant.LEFT.html index e5a1048..e63e48c 100644 --- a/docs/doc/arduboy_rust/hardware/buttons/constant.LEFT.html +++ b/docs/doc/arduboy_rust/hardware/buttons/constant.LEFT.html @@ -1,2 +1,2 @@ -LEFT in arduboy_rust::hardware::buttons - Rust
pub const LEFT: ButtonSet;
Expand description

Just a const for the LEFT button

+LEFT in arduboy_rust::hardware::buttons - Rust
pub const LEFT: ButtonSet;
Expand description

Just a const for the LEFT button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.LEFT_BUTTON.html b/docs/doc/arduboy_rust/hardware/buttons/constant.LEFT_BUTTON.html index 6e62b0d..ddc9e4f 100644 --- a/docs/doc/arduboy_rust/hardware/buttons/constant.LEFT_BUTTON.html +++ b/docs/doc/arduboy_rust/hardware/buttons/constant.LEFT_BUTTON.html @@ -1,2 +1,2 @@ -LEFT_BUTTON in arduboy_rust::hardware::buttons - Rust
pub const LEFT_BUTTON: ButtonSet;
Expand description

Just a const for the LEFT button

+LEFT_BUTTON in arduboy_rust::hardware::buttons - Rust
pub const LEFT_BUTTON: ButtonSet;
Expand description

Just a const for the LEFT button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.RIGHT.html b/docs/doc/arduboy_rust/hardware/buttons/constant.RIGHT.html index 70389f9..6a3968e 100644 --- a/docs/doc/arduboy_rust/hardware/buttons/constant.RIGHT.html +++ b/docs/doc/arduboy_rust/hardware/buttons/constant.RIGHT.html @@ -1,2 +1,2 @@ -RIGHT in arduboy_rust::hardware::buttons - Rust
pub const RIGHT: ButtonSet;
Expand description

Just a const for the RIGHT button

+RIGHT in arduboy_rust::hardware::buttons - Rust
pub const RIGHT: ButtonSet;
Expand description

Just a const for the RIGHT button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.RIGHT_BUTTON.html b/docs/doc/arduboy_rust/hardware/buttons/constant.RIGHT_BUTTON.html index cb3832b..fb3ae68 100644 --- a/docs/doc/arduboy_rust/hardware/buttons/constant.RIGHT_BUTTON.html +++ b/docs/doc/arduboy_rust/hardware/buttons/constant.RIGHT_BUTTON.html @@ -1,2 +1,2 @@ -RIGHT_BUTTON in arduboy_rust::hardware::buttons - Rust
pub const RIGHT_BUTTON: ButtonSet;
Expand description

Just a const for the RIGHT button

+RIGHT_BUTTON in arduboy_rust::hardware::buttons - Rust
pub const RIGHT_BUTTON: ButtonSet;
Expand description

Just a const for the RIGHT button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.UP.html b/docs/doc/arduboy_rust/hardware/buttons/constant.UP.html index 3bfd568..08a7ca0 100644 --- a/docs/doc/arduboy_rust/hardware/buttons/constant.UP.html +++ b/docs/doc/arduboy_rust/hardware/buttons/constant.UP.html @@ -1,2 +1,2 @@ -UP in arduboy_rust::hardware::buttons - Rust

Constant arduboy_rust::hardware::buttons::UP

source ·
pub const UP: ButtonSet;
Expand description

Just a const for the UP button

+UP in arduboy_rust::hardware::buttons - Rust

Constant arduboy_rust::hardware::buttons::UP

source ·
pub const UP: ButtonSet;
Expand description

Just a const for the UP button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.UP_BUTTON.html b/docs/doc/arduboy_rust/hardware/buttons/constant.UP_BUTTON.html index c0d7dc5..388f379 100644 --- a/docs/doc/arduboy_rust/hardware/buttons/constant.UP_BUTTON.html +++ b/docs/doc/arduboy_rust/hardware/buttons/constant.UP_BUTTON.html @@ -1,2 +1,2 @@ -UP_BUTTON in arduboy_rust::hardware::buttons - Rust
pub const UP_BUTTON: ButtonSet;
Expand description

Just a const for the UP button

+UP_BUTTON in arduboy_rust::hardware::buttons - Rust
pub const UP_BUTTON: ButtonSet;
Expand description

Just a const for the UP button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/buttons/index.html b/docs/doc/arduboy_rust/hardware/buttons/index.html index 5380238..f913b5a 100644 --- a/docs/doc/arduboy_rust/hardware/buttons/index.html +++ b/docs/doc/arduboy_rust/hardware/buttons/index.html @@ -1,2 +1,2 @@ -arduboy_rust::hardware::buttons - Rust
Expand description

A list of all six buttons available on the Arduboy

+arduboy_rust::hardware::buttons - Rust
Expand description

A list of all six buttons available on the Arduboy

Structs

  • This struct gives the library a understanding what Buttons on the Arduboy are.

Constants

  • Just a const for the A button
  • Just a const for the A button
  • Just a const for the B button
  • Just a const for the B button
  • Just a const for the DOWN button
  • Just a const for the DOWN button
  • Just a const for the LEFT button
  • Just a const for the LEFT button
  • Just a const for the RIGHT button
  • Just a const for the RIGHT button
  • Just a const for the UP button
  • Just a const for the UP button
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/buttons/struct.ButtonSet.html b/docs/doc/arduboy_rust/hardware/buttons/struct.ButtonSet.html index ee03487..f0c8bc2 100644 --- a/docs/doc/arduboy_rust/hardware/buttons/struct.ButtonSet.html +++ b/docs/doc/arduboy_rust/hardware/buttons/struct.ButtonSet.html @@ -1,4 +1,4 @@ -ButtonSet in arduboy_rust::hardware::buttons - Rust
pub struct ButtonSet {
+ButtonSet in arduboy_rust::hardware::buttons - Rust
pub struct ButtonSet {
     pub flag_set: u8,
 }
Expand description

This struct gives the library a understanding what Buttons on the Arduboy are.

Fields§

§flag_set: u8

Implementations§

source§

impl ButtonSet

source

pub unsafe fn pressed(&self) -> bool

source

pub unsafe fn just_pressed(&self) -> bool

source

pub unsafe fn just_released(&self) -> bool

source

pub unsafe fn not_pressed(&self) -> bool

Trait Implementations§

source§

impl BitOr<ButtonSet> for ButtonSet

§

type Output = ButtonSet

The resulting type after applying the | operator.
source§

fn bitor(self, other: Self) -> Self

Performs the | operation. Read more
source§

impl Clone for ButtonSet

source§

fn clone(&self) -> ButtonSet

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ButtonSet

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Hash for ButtonSet

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given [Hasher]. Read more
1.3.0§

fn hash_slice<H>(data: &[Self], state: &mut H)where @@ -19,5 +19,5 @@ operator. Read more

§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/index.html b/docs/doc/arduboy_rust/hardware/index.html index e50e6c1..a822e25 100644 --- a/docs/doc/arduboy_rust/hardware/index.html +++ b/docs/doc/arduboy_rust/hardware/index.html @@ -1,2 +1,2 @@ -arduboy_rust::hardware - Rust

Module arduboy_rust::hardware

source ·
Expand description

This is the Module to interact in a save way with the Arduboy hardware.

+arduboy_rust::hardware - Rust

Module arduboy_rust::hardware

source ·
Expand description

This is the Module to interact in a save way with the Arduboy hardware.

Modules

  • A list of all six buttons available on the Arduboy
  • A list of all LED variables available
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/led/constant.BLUE_LED.html b/docs/doc/arduboy_rust/hardware/led/constant.BLUE_LED.html index 0024330..5a29614 100644 --- a/docs/doc/arduboy_rust/hardware/led/constant.BLUE_LED.html +++ b/docs/doc/arduboy_rust/hardware/led/constant.BLUE_LED.html @@ -1,2 +1,2 @@ -BLUE_LED in arduboy_rust::hardware::led - Rust
pub const BLUE_LED: u8 = 9;
Expand description

Just a const for the blue led

+BLUE_LED in arduboy_rust::hardware::led - Rust
pub const BLUE_LED: u8 = 9;
Expand description

Just a const for the blue led

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/led/constant.GREEN_LED.html b/docs/doc/arduboy_rust/hardware/led/constant.GREEN_LED.html index 31d572f..8138f8c 100644 --- a/docs/doc/arduboy_rust/hardware/led/constant.GREEN_LED.html +++ b/docs/doc/arduboy_rust/hardware/led/constant.GREEN_LED.html @@ -1,2 +1,2 @@ -GREEN_LED in arduboy_rust::hardware::led - Rust
pub const GREEN_LED: u8 = 11;
Expand description

Just a const for the green led

+GREEN_LED in arduboy_rust::hardware::led - Rust
pub const GREEN_LED: u8 = 11;
Expand description

Just a const for the green led

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/led/constant.RED_LED.html b/docs/doc/arduboy_rust/hardware/led/constant.RED_LED.html index abcfdab..77f1d9a 100644 --- a/docs/doc/arduboy_rust/hardware/led/constant.RED_LED.html +++ b/docs/doc/arduboy_rust/hardware/led/constant.RED_LED.html @@ -1,2 +1,2 @@ -RED_LED in arduboy_rust::hardware::led - Rust

Constant arduboy_rust::hardware::led::RED_LED

source ·
pub const RED_LED: u8 = 10;
Expand description

Just a const for the red led

+RED_LED in arduboy_rust::hardware::led - Rust

Constant arduboy_rust::hardware::led::RED_LED

source ·
pub const RED_LED: u8 = 10;
Expand description

Just a const for the red led

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/led/constant.RGB_OFF.html b/docs/doc/arduboy_rust/hardware/led/constant.RGB_OFF.html index e4761ea..e6b2ae7 100644 --- a/docs/doc/arduboy_rust/hardware/led/constant.RGB_OFF.html +++ b/docs/doc/arduboy_rust/hardware/led/constant.RGB_OFF.html @@ -1,2 +1,2 @@ -RGB_OFF in arduboy_rust::hardware::led - Rust

Constant arduboy_rust::hardware::led::RGB_OFF

source ·
pub const RGB_OFF: u8 = 0;
Expand description

Just a const for led off

+RGB_OFF in arduboy_rust::hardware::led - Rust

Constant arduboy_rust::hardware::led::RGB_OFF

source ·
pub const RGB_OFF: u8 = 0;
Expand description

Just a const for led off

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/led/constant.RGB_ON.html b/docs/doc/arduboy_rust/hardware/led/constant.RGB_ON.html index 0d2ec5a..834feea 100644 --- a/docs/doc/arduboy_rust/hardware/led/constant.RGB_ON.html +++ b/docs/doc/arduboy_rust/hardware/led/constant.RGB_ON.html @@ -1,2 +1,2 @@ -RGB_ON in arduboy_rust::hardware::led - Rust

Constant arduboy_rust::hardware::led::RGB_ON

source ·
pub const RGB_ON: u8 = 1;
Expand description

Just a const for led on

+RGB_ON in arduboy_rust::hardware::led - Rust

Constant arduboy_rust::hardware::led::RGB_ON

source ·
pub const RGB_ON: u8 = 1;
Expand description

Just a const for led on

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/hardware/led/index.html b/docs/doc/arduboy_rust/hardware/led/index.html index d5628d1..fcf6bf3 100644 --- a/docs/doc/arduboy_rust/hardware/led/index.html +++ b/docs/doc/arduboy_rust/hardware/led/index.html @@ -1,2 +1,2 @@ -arduboy_rust::hardware::led - Rust

Module arduboy_rust::hardware::led

source ·
Expand description

A list of all LED variables available

+arduboy_rust::hardware::led - Rust

Module arduboy_rust::hardware::led

source ·
Expand description

A list of all LED variables available

Constants

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/index.html b/docs/doc/arduboy_rust/index.html index 06647ac..b2c70f2 100644 --- a/docs/doc/arduboy_rust/index.html +++ b/docs/doc/arduboy_rust/index.html @@ -1,4 +1,4 @@ -arduboy_rust - Rust

Crate arduboy_rust

source ·
Expand description

This is the arduboy_rust crate +arduboy_rust - Rust

Crate arduboy_rust

source ·
Expand description

This is the arduboy_rust crate To get started import the prelude to your project.

Import the module:

diff --git a/docs/doc/arduboy_rust/macro.f.html b/docs/doc/arduboy_rust/macro.f.html index 6c59206..2238e52 100644 --- a/docs/doc/arduboy_rust/macro.f.html +++ b/docs/doc/arduboy_rust/macro.f.html @@ -1,4 +1,4 @@ -f in arduboy_rust - Rust

Macro arduboy_rust::f

source ·
macro_rules! f {
+f in arduboy_rust - Rust

Macro arduboy_rust::f

source ·
macro_rules! f {
     ($string_literal:literal) => { ... };
 }
Expand description

This is the way to go if you want print some random text

This doesn’t waste the 2kb ram it saves to progmem (28kb) diff --git a/docs/doc/arduboy_rust/macro.get_sprite_addr.html b/docs/doc/arduboy_rust/macro.get_sprite_addr.html index a4fcd9d..4219a79 100644 --- a/docs/doc/arduboy_rust/macro.get_sprite_addr.html +++ b/docs/doc/arduboy_rust/macro.get_sprite_addr.html @@ -1,4 +1,4 @@ -get_sprite_addr in arduboy_rust - Rust

macro_rules! get_sprite_addr {
+get_sprite_addr in arduboy_rust - Rust
macro_rules! get_sprite_addr {
     ( $s:expr ) => { ... };
 }
Expand description

Create a const raw pointer to a sprite as u8, without creating an intermediate reference.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/macro.get_string_addr.html b/docs/doc/arduboy_rust/macro.get_string_addr.html index d786d36..17514b1 100644 --- a/docs/doc/arduboy_rust/macro.get_string_addr.html +++ b/docs/doc/arduboy_rust/macro.get_string_addr.html @@ -1,4 +1,4 @@ -get_string_addr in arduboy_rust - Rust
macro_rules! get_string_addr {
+get_string_addr in arduboy_rust - Rust
macro_rules! get_string_addr {
     ( $s:expr ) => { ... };
 }
Expand description

Create a const raw pointer to a [u8;_] that saves text, without creating an intermediate reference.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/macro.get_tones_addr.html b/docs/doc/arduboy_rust/macro.get_tones_addr.html index 0addcfa..6e5b67b 100644 --- a/docs/doc/arduboy_rust/macro.get_tones_addr.html +++ b/docs/doc/arduboy_rust/macro.get_tones_addr.html @@ -1,4 +1,4 @@ -get_tones_addr in arduboy_rust - Rust
macro_rules! get_tones_addr {
+get_tones_addr in arduboy_rust - Rust
macro_rules! get_tones_addr {
     ( $s:expr ) => { ... };
 }
Expand description

Create a const raw pointer to a sprite as u16, without creating an intermediate reference.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/macro.progmem.html b/docs/doc/arduboy_rust/macro.progmem.html index 19e2c6f..1c4851f 100644 --- a/docs/doc/arduboy_rust/macro.progmem.html +++ b/docs/doc/arduboy_rust/macro.progmem.html @@ -1,4 +1,4 @@ -progmem in arduboy_rust - Rust

Macro arduboy_rust::progmem

source ·
macro_rules! progmem {
+progmem in arduboy_rust - Rust

Macro arduboy_rust::progmem

source ·
macro_rules! progmem {
     (
         $( #[$attr:meta] )*
         $v:vis $id:ident $name:ident: [$ty:ty; _] = $value:expr;
diff --git a/docs/doc/arduboy_rust/prelude/arduboy2/constant.FONT_SIZE.html b/docs/doc/arduboy_rust/prelude/arduboy2/constant.FONT_SIZE.html
index 5522c3f..d91ee30 100644
--- a/docs/doc/arduboy_rust/prelude/arduboy2/constant.FONT_SIZE.html
+++ b/docs/doc/arduboy_rust/prelude/arduboy2/constant.FONT_SIZE.html
@@ -1,3 +1,3 @@
-FONT_SIZE in arduboy_rust::prelude::arduboy2 - Rust
pub const FONT_SIZE: u8 = 6;
Expand description

The standard font size of the arduboy

+FONT_SIZE in arduboy_rust::prelude::arduboy2 - Rust
pub const FONT_SIZE: u8 = 6;
Expand description

The standard font size of the arduboy

this is to calculate with it.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy2/constant.HEIGHT.html b/docs/doc/arduboy_rust/prelude/arduboy2/constant.HEIGHT.html index d6fa247..e7cdb50 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy2/constant.HEIGHT.html +++ b/docs/doc/arduboy_rust/prelude/arduboy2/constant.HEIGHT.html @@ -1,3 +1,3 @@ -HEIGHT in arduboy_rust::prelude::arduboy2 - Rust
pub const HEIGHT: u8 = 64;
Expand description

The standard height of the arduboy

+HEIGHT in arduboy_rust::prelude::arduboy2 - Rust
pub const HEIGHT: u8 = 64;
Expand description

The standard height of the arduboy

this is to calculate with it.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy2/constant.WIDTH.html b/docs/doc/arduboy_rust/prelude/arduboy2/constant.WIDTH.html index 93d5eab..9f0fa0e 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy2/constant.WIDTH.html +++ b/docs/doc/arduboy_rust/prelude/arduboy2/constant.WIDTH.html @@ -1,3 +1,3 @@ -WIDTH in arduboy_rust::prelude::arduboy2 - Rust
pub const WIDTH: u8 = 128;
Expand description

The standard width of the arduboy

+WIDTH in arduboy_rust::prelude::arduboy2 - Rust
pub const WIDTH: u8 = 128;
Expand description

The standard width of the arduboy

this is to calculate with it.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy2/enum.Color.html b/docs/doc/arduboy_rust/prelude/arduboy2/enum.Color.html index 35207bc..ac79897 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy2/enum.Color.html +++ b/docs/doc/arduboy_rust/prelude/arduboy2/enum.Color.html @@ -1,4 +1,4 @@ -Color in arduboy_rust::prelude::arduboy2 - Rust
§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy2/index.html b/docs/doc/arduboy_rust/prelude/arduboy2/index.html index c2ec4c4..405fb24 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy2/index.html +++ b/docs/doc/arduboy_rust/prelude/arduboy2/index.html @@ -1,3 +1,3 @@ -arduboy_rust::prelude::arduboy2 - Rust
Expand description

This is the Module to interact in a save way with the Arduboy2 C++ library.

+arduboy_rust::prelude::arduboy2 - Rust
Expand description

This is the Module to interact in a save way with the Arduboy2 C++ library.

All of the functions are safe wrapped inside the Arduboy2 struct.

Structs

  • This is the struct to interact in a save way with the Arduboy2 C++ library.
  • This struct is used by a few Arduboy functions.
  • This struct is used by a few Arduboy functions.

Enums

  • This item is to chose between Black or White

Constants

  • The standard font size of the arduboy
  • The standard height of the arduboy
  • The standard width of the arduboy
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy2/struct.Arduboy2.html b/docs/doc/arduboy_rust/prelude/arduboy2/struct.Arduboy2.html index 1e113f6..f8d490c 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy2/struct.Arduboy2.html +++ b/docs/doc/arduboy_rust/prelude/arduboy2/struct.Arduboy2.html @@ -1,4 +1,4 @@ -Arduboy2 in arduboy_rust::prelude::arduboy2 - Rust
pub struct Arduboy2 {}
Expand description

This is the struct to interact in a save way with the Arduboy2 C++ library.

+Arduboy2 in arduboy_rust::prelude::arduboy2 - Rust
pub struct Arduboy2 {}
Expand description

This is the struct to interact in a save way with the Arduboy2 C++ library.

Implementations§

source§

impl Arduboy2

source

pub const fn new() -> Self

gives you a new instance of the Arduboy2

Example
const arduboy: Arduboy2 = Arduboy2::new();
@@ -349,5 +349,5 @@ true if the specified number of frames has elapsed.

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy2/struct.Point.html b/docs/doc/arduboy_rust/prelude/arduboy2/struct.Point.html index ca3599f..d1fa207 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy2/struct.Point.html +++ b/docs/doc/arduboy_rust/prelude/arduboy2/struct.Point.html @@ -1,4 +1,4 @@ -Point in arduboy_rust::prelude::arduboy2 - Rust
pub struct Point {
+Point in arduboy_rust::prelude::arduboy2 - Rust
pub struct Point {
     pub x: i16,
     pub y: i16,
 }
Expand description

This struct is used by a few Arduboy functions.

@@ -13,5 +13,5 @@

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy2/struct.Rect.html b/docs/doc/arduboy_rust/prelude/arduboy2/struct.Rect.html index 79cd8a0..c9d8e9f 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy2/struct.Rect.html +++ b/docs/doc/arduboy_rust/prelude/arduboy2/struct.Rect.html @@ -1,4 +1,4 @@ -Rect in arduboy_rust::prelude::arduboy2 - Rust
pub struct Rect {
+Rect in arduboy_rust::prelude::arduboy2 - Rust
pub struct Rect {
     pub x: i16,
     pub y: i16,
     pub width: u8,
@@ -17,5 +17,5 @@
 

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0.html index 381ee33..b98732a 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0.html @@ -1 +1 @@ -NOTE_A0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A0: u16 = 28;
\ No newline at end of file +NOTE_A0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A0: u16 = 28;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0H.html index 7630e27..45621dd 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0H.html @@ -1 +1 @@ -NOTE_A0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A0H: u16 = _; // 32_796u16
\ No newline at end of file +NOTE_A0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A0H: u16 = _; // 32_796u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1.html index 8a5f2c6..3b815bd 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1.html @@ -1 +1 @@ -NOTE_A1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A1: u16 = 55;
\ No newline at end of file +NOTE_A1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A1: u16 = 55;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1H.html index b00a573..09fc30e 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1H.html @@ -1 +1 @@ -NOTE_A1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A1H: u16 = _; // 32_823u16
\ No newline at end of file +NOTE_A1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A1H: u16 = _; // 32_823u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2.html index 464bcc3..6770e44 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2.html @@ -1 +1 @@ -NOTE_A2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A2: u16 = 110;
\ No newline at end of file +NOTE_A2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A2: u16 = 110;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2H.html index f74057f..9d49268 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2H.html @@ -1 +1 @@ -NOTE_A2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A2H: u16 = _; // 32_878u16
\ No newline at end of file +NOTE_A2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A2H: u16 = _; // 32_878u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3.html index 9f80458..4614e0e 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3.html @@ -1 +1 @@ -NOTE_A3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A3: u16 = 220;
\ No newline at end of file +NOTE_A3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A3: u16 = 220;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3H.html index eb908bf..8348604 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3H.html @@ -1 +1 @@ -NOTE_A3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A3H: u16 = _; // 32_988u16
\ No newline at end of file +NOTE_A3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A3H: u16 = _; // 32_988u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4.html index 5497d0b..8a4d343 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4.html @@ -1 +1 @@ -NOTE_A4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A4: u16 = 440;
\ No newline at end of file +NOTE_A4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A4: u16 = 440;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4H.html index 99a6efd..a0744fe 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4H.html @@ -1 +1 @@ -NOTE_A4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A4H: u16 = _; // 33_208u16
\ No newline at end of file +NOTE_A4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A4H: u16 = _; // 33_208u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5.html index 761fd73..4e07a2f 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5.html @@ -1 +1 @@ -NOTE_A5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A5: u16 = 880;
\ No newline at end of file +NOTE_A5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A5: u16 = 880;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5H.html index 204149c..fb4fe79 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5H.html @@ -1 +1 @@ -NOTE_A5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A5H: u16 = _; // 33_648u16
\ No newline at end of file +NOTE_A5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A5H: u16 = _; // 33_648u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6.html index 3237798..9c315ce 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6.html @@ -1 +1 @@ -NOTE_A6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A6: u16 = 1760;
\ No newline at end of file +NOTE_A6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A6: u16 = 1760;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6H.html index b0c7da7..13645de 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6H.html @@ -1 +1 @@ -NOTE_A6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A6H: u16 = _; // 34_528u16
\ No newline at end of file +NOTE_A6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A6H: u16 = _; // 34_528u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7.html index 59ee386..151592e 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7.html @@ -1 +1 @@ -NOTE_A7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A7: u16 = 3520;
\ No newline at end of file +NOTE_A7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A7: u16 = 3520;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7H.html index 18ea859..65a3ca9 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7H.html @@ -1 +1 @@ -NOTE_A7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A7H: u16 = _; // 36_288u16
\ No newline at end of file +NOTE_A7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A7H: u16 = _; // 36_288u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8.html index 407f4f2..05be5ac 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8.html @@ -1 +1 @@ -NOTE_A8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A8: u16 = 7040;
\ No newline at end of file +NOTE_A8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A8: u16 = 7040;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8H.html index 3b533e1..1f14e5e 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8H.html @@ -1 +1 @@ -NOTE_A8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A8H: u16 = _; // 39_808u16
\ No newline at end of file +NOTE_A8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A8H: u16 = _; // 39_808u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9.html index fe292e8..a8b4822 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9.html @@ -1 +1 @@ -NOTE_A9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A9: u16 = 14080;
\ No newline at end of file +NOTE_A9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A9: u16 = 14080;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9H.html index b9f91b0..1977866 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9H.html @@ -1 +1 @@ -NOTE_A9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A9H: u16 = _; // 46_848u16
\ No newline at end of file +NOTE_A9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_A9H: u16 = _; // 46_848u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0.html index c4a8849..e3ccdc1 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0.html @@ -1 +1 @@ -NOTE_AS0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS0: u16 = 29;
\ No newline at end of file +NOTE_AS0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS0: u16 = 29;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0H.html index e5cff76..d96e2ed 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0H.html @@ -1 +1 @@ -NOTE_AS0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS0H: u16 = _; // 32_797u16
\ No newline at end of file +NOTE_AS0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS0H: u16 = _; // 32_797u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1.html index cd1fda3..745288c 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1.html @@ -1 +1 @@ -NOTE_AS1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS1: u16 = 58;
\ No newline at end of file +NOTE_AS1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS1: u16 = 58;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1H.html index 8d9cafe..07f81dd 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1H.html @@ -1 +1 @@ -NOTE_AS1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS1H: u16 = _; // 32_826u16
\ No newline at end of file +NOTE_AS1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS1H: u16 = _; // 32_826u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2.html index 42ea911..4789a19 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2.html @@ -1 +1 @@ -NOTE_AS2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS2: u16 = 117;
\ No newline at end of file +NOTE_AS2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS2: u16 = 117;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2H.html index 7eb808e..a244d7d 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2H.html @@ -1 +1 @@ -NOTE_AS2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS2H: u16 = _; // 32_885u16
\ No newline at end of file +NOTE_AS2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS2H: u16 = _; // 32_885u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3.html index 03a033f..8de7ce9 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3.html @@ -1 +1 @@ -NOTE_AS3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS3: u16 = 233;
\ No newline at end of file +NOTE_AS3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS3: u16 = 233;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3H.html index dd74c25..73044cd 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3H.html @@ -1 +1 @@ -NOTE_AS3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS3H: u16 = _; // 33_001u16
\ No newline at end of file +NOTE_AS3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS3H: u16 = _; // 33_001u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4.html index a332f28..dec7ef8 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4.html @@ -1 +1 @@ -NOTE_AS4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS4: u16 = 466;
\ No newline at end of file +NOTE_AS4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS4: u16 = 466;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4H.html index 7c25172..dbbdfce 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4H.html @@ -1 +1 @@ -NOTE_AS4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS4H: u16 = _; // 33_234u16
\ No newline at end of file +NOTE_AS4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS4H: u16 = _; // 33_234u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5.html index 2a39b9a..727d7f5 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5.html @@ -1 +1 @@ -NOTE_AS5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS5: u16 = 932;
\ No newline at end of file +NOTE_AS5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS5: u16 = 932;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5H.html index 9beaf12..b4c2c8c 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5H.html @@ -1 +1 @@ -NOTE_AS5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS5H: u16 = _; // 33_700u16
\ No newline at end of file +NOTE_AS5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS5H: u16 = _; // 33_700u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6.html index 5fed1ca..0e4b52e 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6.html @@ -1 +1 @@ -NOTE_AS6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS6: u16 = 1865;
\ No newline at end of file +NOTE_AS6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS6: u16 = 1865;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6H.html index 7cafaf8..333af94 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6H.html @@ -1 +1 @@ -NOTE_AS6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS6H: u16 = _; // 34_633u16
\ No newline at end of file +NOTE_AS6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS6H: u16 = _; // 34_633u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7.html index a3e51a7..22638c4 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7.html @@ -1 +1 @@ -NOTE_AS7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS7: u16 = 3729;
\ No newline at end of file +NOTE_AS7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS7: u16 = 3729;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7H.html index 10a9b42..3292bcb 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7H.html @@ -1 +1 @@ -NOTE_AS7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS7H: u16 = _; // 36_497u16
\ No newline at end of file +NOTE_AS7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS7H: u16 = _; // 36_497u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8.html index 21fd642..bd2a3ef 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8.html @@ -1 +1 @@ -NOTE_AS8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS8: u16 = 7459;
\ No newline at end of file +NOTE_AS8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS8: u16 = 7459;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8H.html index a10e5f2..fa74835 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8H.html @@ -1 +1 @@ -NOTE_AS8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS8H: u16 = _; // 40_227u16
\ No newline at end of file +NOTE_AS8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS8H: u16 = _; // 40_227u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9.html index 12283a6..376d58e 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9.html @@ -1 +1 @@ -NOTE_AS9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS9: u16 = 14917;
\ No newline at end of file +NOTE_AS9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS9: u16 = 14917;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9H.html index 5837a87..466de8d 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9H.html @@ -1 +1 @@ -NOTE_AS9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS9H: u16 = _; // 47_685u16
\ No newline at end of file +NOTE_AS9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_AS9H: u16 = _; // 47_685u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0.html index 9b87497..10cf75c 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0.html @@ -1 +1 @@ -NOTE_B0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B0: u16 = 31;
\ No newline at end of file +NOTE_B0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B0: u16 = 31;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0H.html index 96d3da0..fbdd86a 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0H.html @@ -1 +1 @@ -NOTE_B0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B0H: u16 = _; // 32_799u16
\ No newline at end of file +NOTE_B0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B0H: u16 = _; // 32_799u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1.html index 785e387..f8f4fc0 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1.html @@ -1 +1 @@ -NOTE_B1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B1: u16 = 62;
\ No newline at end of file +NOTE_B1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B1: u16 = 62;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1H.html index 2329af8..d64bdd0 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1H.html @@ -1 +1 @@ -NOTE_B1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B1H: u16 = _; // 32_830u16
\ No newline at end of file +NOTE_B1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B1H: u16 = _; // 32_830u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2.html index 0b992a5..ec8ec15 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2.html @@ -1 +1 @@ -NOTE_B2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B2: u16 = 123;
\ No newline at end of file +NOTE_B2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B2: u16 = 123;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2H.html index bedb842..591f820 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2H.html @@ -1 +1 @@ -NOTE_B2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B2H: u16 = _; // 32_891u16
\ No newline at end of file +NOTE_B2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B2H: u16 = _; // 32_891u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3.html index 2a0db07..0501cb1 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3.html @@ -1 +1 @@ -NOTE_B3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B3: u16 = 247;
\ No newline at end of file +NOTE_B3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B3: u16 = 247;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3H.html index 5a7c725..387a4e5 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3H.html @@ -1 +1 @@ -NOTE_B3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B3H: u16 = _; // 33_015u16
\ No newline at end of file +NOTE_B3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B3H: u16 = _; // 33_015u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4.html index 767d1dc..8784847 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4.html @@ -1 +1 @@ -NOTE_B4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B4: u16 = 494;
\ No newline at end of file +NOTE_B4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B4: u16 = 494;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4H.html index fae5108..feeeb08 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4H.html @@ -1 +1 @@ -NOTE_B4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B4H: u16 = _; // 33_262u16
\ No newline at end of file +NOTE_B4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B4H: u16 = _; // 33_262u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5.html index 58f5e6a..0bc1c74 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5.html @@ -1 +1 @@ -NOTE_B5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B5: u16 = 988;
\ No newline at end of file +NOTE_B5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B5: u16 = 988;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5H.html index 80ae3ab..b48b02c 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5H.html @@ -1 +1 @@ -NOTE_B5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B5H: u16 = _; // 33_756u16
\ No newline at end of file +NOTE_B5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B5H: u16 = _; // 33_756u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6.html index 7cca24e..c9eb760 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6.html @@ -1 +1 @@ -NOTE_B6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B6: u16 = 1976;
\ No newline at end of file +NOTE_B6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B6: u16 = 1976;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6H.html index 8ce94bd..98e1a9f 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6H.html @@ -1 +1 @@ -NOTE_B6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B6H: u16 = _; // 34_744u16
\ No newline at end of file +NOTE_B6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B6H: u16 = _; // 34_744u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7.html index 9ac043f..fb698ad 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7.html @@ -1 +1 @@ -NOTE_B7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B7: u16 = 3951;
\ No newline at end of file +NOTE_B7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B7: u16 = 3951;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7H.html index f2e7b3e..448b628 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7H.html @@ -1 +1 @@ -NOTE_B7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B7H: u16 = _; // 36_719u16
\ No newline at end of file +NOTE_B7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B7H: u16 = _; // 36_719u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8.html index e056fa1..0a28e67 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8.html @@ -1 +1 @@ -NOTE_B8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B8: u16 = 7902;
\ No newline at end of file +NOTE_B8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B8: u16 = 7902;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8H.html index d261c4c..39b090c 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8H.html @@ -1 +1 @@ -NOTE_B8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B8H: u16 = _; // 40_670u16
\ No newline at end of file +NOTE_B8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B8H: u16 = _; // 40_670u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9.html index 405aaec..879af1a 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9.html @@ -1 +1 @@ -NOTE_B9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B9: u16 = 15804;
\ No newline at end of file +NOTE_B9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B9: u16 = 15804;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9H.html index d99849f..88f425e 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9H.html @@ -1 +1 @@ -NOTE_B9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B9H: u16 = _; // 48_572u16
\ No newline at end of file +NOTE_B9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_B9H: u16 = _; // 48_572u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0.html index 374200a..be4a286 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0.html @@ -1 +1 @@ -NOTE_C0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C0: u16 = 16;
\ No newline at end of file +NOTE_C0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C0: u16 = 16;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0H.html index e4443c0..b2a86fe 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0H.html @@ -1 +1 @@ -NOTE_C0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C0H: u16 = _; // 32_784u16
\ No newline at end of file +NOTE_C0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C0H: u16 = _; // 32_784u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1.html index b2e2525..ed8e830 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1.html @@ -1 +1 @@ -NOTE_C1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C1: u16 = 33;
\ No newline at end of file +NOTE_C1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C1: u16 = 33;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1H.html index fd4d03e..bc670d9 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1H.html @@ -1 +1 @@ -NOTE_C1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C1H: u16 = _; // 32_801u16
\ No newline at end of file +NOTE_C1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C1H: u16 = _; // 32_801u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2.html index f6bb088..5e8f2ff 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2.html @@ -1 +1 @@ -NOTE_C2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C2: u16 = 65;
\ No newline at end of file +NOTE_C2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C2: u16 = 65;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2H.html index 8b5e191..c8d3806 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2H.html @@ -1 +1 @@ -NOTE_C2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C2H: u16 = _; // 32_833u16
\ No newline at end of file +NOTE_C2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C2H: u16 = _; // 32_833u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3.html index 5215e47..224d3ba 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3.html @@ -1 +1 @@ -NOTE_C3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C3: u16 = 131;
\ No newline at end of file +NOTE_C3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C3: u16 = 131;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3H.html index 3c5a719..a4ba75e 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3H.html @@ -1 +1 @@ -NOTE_C3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C3H: u16 = _; // 32_899u16
\ No newline at end of file +NOTE_C3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C3H: u16 = _; // 32_899u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4.html index bb4e4ea..5cbf543 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4.html @@ -1 +1 @@ -NOTE_C4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C4: u16 = 262;
\ No newline at end of file +NOTE_C4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C4: u16 = 262;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4H.html index 103afb3..bf14285 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4H.html @@ -1 +1 @@ -NOTE_C4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C4H: u16 = _; // 33_030u16
\ No newline at end of file +NOTE_C4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C4H: u16 = _; // 33_030u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5.html index cb7533f..360ef50 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5.html @@ -1 +1 @@ -NOTE_C5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C5: u16 = 523;
\ No newline at end of file +NOTE_C5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C5: u16 = 523;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5H.html index 7aa434e..c5a0c06 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5H.html @@ -1 +1 @@ -NOTE_C5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C5H: u16 = _; // 33_291u16
\ No newline at end of file +NOTE_C5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C5H: u16 = _; // 33_291u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6.html index 2971ddb..f07b700 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6.html @@ -1 +1 @@ -NOTE_C6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C6: u16 = 1047;
\ No newline at end of file +NOTE_C6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C6: u16 = 1047;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6H.html index b4fe9b7..bbd7cf5 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6H.html @@ -1 +1 @@ -NOTE_C6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C6H: u16 = _; // 33_815u16
\ No newline at end of file +NOTE_C6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C6H: u16 = _; // 33_815u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7.html index 395f2a1..e17ba61 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7.html @@ -1 +1 @@ -NOTE_C7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C7: u16 = 2093;
\ No newline at end of file +NOTE_C7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C7: u16 = 2093;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7H.html index ca6ee49..608abc6 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7H.html @@ -1 +1 @@ -NOTE_C7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C7H: u16 = _; // 34_861u16
\ No newline at end of file +NOTE_C7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C7H: u16 = _; // 34_861u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8.html index c788658..6abe553 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8.html @@ -1 +1 @@ -NOTE_C8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C8: u16 = 4186;
\ No newline at end of file +NOTE_C8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C8: u16 = 4186;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8H.html index b262e4f..73bbfb5 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8H.html @@ -1 +1 @@ -NOTE_C8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C8H: u16 = _; // 36_954u16
\ No newline at end of file +NOTE_C8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C8H: u16 = _; // 36_954u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9.html index f1e789c..2f6aca2 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9.html @@ -1 +1 @@ -NOTE_C9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C9: u16 = 8372;
\ No newline at end of file +NOTE_C9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C9: u16 = 8372;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9H.html index e7f0b68..61d96a4 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9H.html @@ -1 +1 @@ -NOTE_C9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C9H: u16 = _; // 41_140u16
\ No newline at end of file +NOTE_C9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_C9H: u16 = _; // 41_140u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0.html index cb6a88f..24a6343 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0.html @@ -1 +1 @@ -NOTE_CS0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS0: u16 = 17;
\ No newline at end of file +NOTE_CS0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS0: u16 = 17;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0H.html index 841cec7..4466a31 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0H.html @@ -1 +1 @@ -NOTE_CS0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS0H: u16 = _; // 32_785u16
\ No newline at end of file +NOTE_CS0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS0H: u16 = _; // 32_785u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1.html index 210800f..1fdc48e 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1.html @@ -1 +1 @@ -NOTE_CS1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS1: u16 = 35;
\ No newline at end of file +NOTE_CS1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS1: u16 = 35;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1H.html index 1663da2..51c2151 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1H.html @@ -1 +1 @@ -NOTE_CS1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS1H: u16 = _; // 32_803u16
\ No newline at end of file +NOTE_CS1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS1H: u16 = _; // 32_803u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2.html index 254e567..e9714b5 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2.html @@ -1 +1 @@ -NOTE_CS2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS2: u16 = 69;
\ No newline at end of file +NOTE_CS2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS2: u16 = 69;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2H.html index c489530..f6e5b89 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2H.html @@ -1 +1 @@ -NOTE_CS2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS2H: u16 = _; // 32_837u16
\ No newline at end of file +NOTE_CS2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS2H: u16 = _; // 32_837u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3.html index aa2bba7..ca3963c 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3.html @@ -1 +1 @@ -NOTE_CS3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS3: u16 = 139;
\ No newline at end of file +NOTE_CS3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS3: u16 = 139;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3H.html index 31b1070..5dc4df2 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3H.html @@ -1 +1 @@ -NOTE_CS3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS3H: u16 = _; // 32_907u16
\ No newline at end of file +NOTE_CS3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS3H: u16 = _; // 32_907u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4.html index 854de98..b723486 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4.html @@ -1 +1 @@ -NOTE_CS4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS4: u16 = 277;
\ No newline at end of file +NOTE_CS4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS4: u16 = 277;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4H.html index c45a964..9a13871 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4H.html @@ -1 +1 @@ -NOTE_CS4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS4H: u16 = _; // 33_045u16
\ No newline at end of file +NOTE_CS4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS4H: u16 = _; // 33_045u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5.html index 5cb7c37..c3fdfc7 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5.html @@ -1 +1 @@ -NOTE_CS5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS5: u16 = 554;
\ No newline at end of file +NOTE_CS5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS5: u16 = 554;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5H.html index a9d3a0f..e688ddf 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5H.html @@ -1 +1 @@ -NOTE_CS5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS5H: u16 = _; // 33_322u16
\ No newline at end of file +NOTE_CS5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS5H: u16 = _; // 33_322u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6.html index afc0c57..950ba4d 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6.html @@ -1 +1 @@ -NOTE_CS6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS6: u16 = 1109;
\ No newline at end of file +NOTE_CS6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS6: u16 = 1109;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6H.html index 78dbd38..2dc0980 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6H.html @@ -1 +1 @@ -NOTE_CS6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS6H: u16 = _; // 33_877u16
\ No newline at end of file +NOTE_CS6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS6H: u16 = _; // 33_877u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7.html index 857dcca..1b9c30d 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7.html @@ -1 +1 @@ -NOTE_CS7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS7: u16 = 2218;
\ No newline at end of file +NOTE_CS7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS7: u16 = 2218;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7H.html index 74c8318..1586c7b 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7H.html @@ -1 +1 @@ -NOTE_CS7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS7H: u16 = _; // 34_986u16
\ No newline at end of file +NOTE_CS7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS7H: u16 = _; // 34_986u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8.html index 6570a2b..dda4daf 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8.html @@ -1 +1 @@ -NOTE_CS8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS8: u16 = 4435;
\ No newline at end of file +NOTE_CS8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS8: u16 = 4435;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8H.html index fedd75e..5ff25d7 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8H.html @@ -1 +1 @@ -NOTE_CS8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS8H: u16 = _; // 37_203u16
\ No newline at end of file +NOTE_CS8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS8H: u16 = _; // 37_203u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9.html index 0cbe337..d25083a 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9.html @@ -1 +1 @@ -NOTE_CS9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS9: u16 = 8870;
\ No newline at end of file +NOTE_CS9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS9: u16 = 8870;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9H.html index e79b1db..07fb3a2 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9H.html @@ -1 +1 @@ -NOTE_CS9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS9H: u16 = _; // 41_638u16
\ No newline at end of file +NOTE_CS9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_CS9H: u16 = _; // 41_638u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0.html index c8244fd..1deb120 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0.html @@ -1 +1 @@ -NOTE_D0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D0: u16 = 18;
\ No newline at end of file +NOTE_D0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D0: u16 = 18;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0H.html index 0141349..02d7e3d 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0H.html @@ -1 +1 @@ -NOTE_D0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D0H: u16 = _; // 32_786u16
\ No newline at end of file +NOTE_D0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D0H: u16 = _; // 32_786u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1.html index d25aadd..5b5b6df 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1.html @@ -1 +1 @@ -NOTE_D1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D1: u16 = 37;
\ No newline at end of file +NOTE_D1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D1: u16 = 37;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1H.html index 8997ff8..39198f4 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1H.html @@ -1 +1 @@ -NOTE_D1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D1H: u16 = _; // 32_805u16
\ No newline at end of file +NOTE_D1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D1H: u16 = _; // 32_805u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2.html index 0c4e563..66596a5 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2.html @@ -1 +1 @@ -NOTE_D2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D2: u16 = 73;
\ No newline at end of file +NOTE_D2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D2: u16 = 73;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2H.html index 0627696..c1b17c2 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2H.html @@ -1 +1 @@ -NOTE_D2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D2H: u16 = _; // 32_841u16
\ No newline at end of file +NOTE_D2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D2H: u16 = _; // 32_841u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3.html index b13ae8b..93adb9a 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3.html @@ -1 +1 @@ -NOTE_D3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D3: u16 = 147;
\ No newline at end of file +NOTE_D3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D3: u16 = 147;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3H.html index f3236b2..27e0c46 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3H.html @@ -1 +1 @@ -NOTE_D3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D3H: u16 = _; // 32_915u16
\ No newline at end of file +NOTE_D3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D3H: u16 = _; // 32_915u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4.html index b6a2828..c801fa5 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4.html @@ -1 +1 @@ -NOTE_D4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D4: u16 = 294;
\ No newline at end of file +NOTE_D4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D4: u16 = 294;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4H.html index 81cee62..ed8360a 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4H.html @@ -1 +1 @@ -NOTE_D4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D4H: u16 = _; // 33_062u16
\ No newline at end of file +NOTE_D4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D4H: u16 = _; // 33_062u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5.html index f078cd6..7cd0689 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5.html @@ -1 +1 @@ -NOTE_D5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D5: u16 = 587;
\ No newline at end of file +NOTE_D5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D5: u16 = 587;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5H.html index 912bf2e..6c6bf9a 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5H.html @@ -1 +1 @@ -NOTE_D5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D5H: u16 = _; // 33_355u16
\ No newline at end of file +NOTE_D5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D5H: u16 = _; // 33_355u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6.html index 37e9f6f..c1418f2 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6.html @@ -1 +1 @@ -NOTE_D6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D6: u16 = 1175;
\ No newline at end of file +NOTE_D6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D6: u16 = 1175;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6H.html index b655193..276e77c 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6H.html @@ -1 +1 @@ -NOTE_D6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D6H: u16 = _; // 33_943u16
\ No newline at end of file +NOTE_D6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D6H: u16 = _; // 33_943u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7.html index 6f4e0be..b23ae39 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7.html @@ -1 +1 @@ -NOTE_D7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D7: u16 = 2349;
\ No newline at end of file +NOTE_D7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D7: u16 = 2349;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7H.html index 526397e..708b8b2 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7H.html @@ -1 +1 @@ -NOTE_D7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D7H: u16 = _; // 35_117u16
\ No newline at end of file +NOTE_D7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D7H: u16 = _; // 35_117u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8.html index 04cdbe1..7775a03 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8.html @@ -1 +1 @@ -NOTE_D8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D8: u16 = 4699;
\ No newline at end of file +NOTE_D8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D8: u16 = 4699;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8H.html index 334fcda..42dc73e 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8H.html @@ -1 +1 @@ -NOTE_D8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D8H: u16 = _; // 37_467u16
\ No newline at end of file +NOTE_D8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D8H: u16 = _; // 37_467u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9.html index 2d74503..2b3f0ef 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9.html @@ -1 +1 @@ -NOTE_D9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D9: u16 = 9397;
\ No newline at end of file +NOTE_D9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D9: u16 = 9397;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9H.html index 9a3eeeb..8caa659 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9H.html @@ -1 +1 @@ -NOTE_D9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D9H: u16 = _; // 42_165u16
\ No newline at end of file +NOTE_D9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_D9H: u16 = _; // 42_165u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0.html index fcf40e5..a72a053 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0.html @@ -1 +1 @@ -NOTE_DS0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS0: u16 = 19;
\ No newline at end of file +NOTE_DS0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS0: u16 = 19;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0H.html index bcce5b5..24e2d36 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0H.html @@ -1 +1 @@ -NOTE_DS0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS0H: u16 = _; // 32_787u16
\ No newline at end of file +NOTE_DS0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS0H: u16 = _; // 32_787u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1.html index 5c57a6d..e08a64e 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1.html @@ -1 +1 @@ -NOTE_DS1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS1: u16 = 39;
\ No newline at end of file +NOTE_DS1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS1: u16 = 39;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1H.html index 487f0db..23867f6 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1H.html @@ -1 +1 @@ -NOTE_DS1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS1H: u16 = _; // 32_807u16
\ No newline at end of file +NOTE_DS1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS1H: u16 = _; // 32_807u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2.html index 3b22a43..4b7d3de 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2.html @@ -1 +1 @@ -NOTE_DS2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS2: u16 = 78;
\ No newline at end of file +NOTE_DS2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS2: u16 = 78;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2H.html index ae3abcc..81a962a 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2H.html @@ -1 +1 @@ -NOTE_DS2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS2H: u16 = _; // 32_846u16
\ No newline at end of file +NOTE_DS2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS2H: u16 = _; // 32_846u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3.html index 4f415cf..1645d8f 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3.html @@ -1 +1 @@ -NOTE_DS3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS3: u16 = 156;
\ No newline at end of file +NOTE_DS3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS3: u16 = 156;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3H.html index e062de6..87b74b3 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3H.html @@ -1 +1 @@ -NOTE_DS3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS3H: u16 = _; // 32_924u16
\ No newline at end of file +NOTE_DS3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS3H: u16 = _; // 32_924u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4.html index af7c390..96798d3 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4.html @@ -1 +1 @@ -NOTE_DS4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS4: u16 = 311;
\ No newline at end of file +NOTE_DS4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS4: u16 = 311;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4H.html index 92ad42b..280865b 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4H.html @@ -1 +1 @@ -NOTE_DS4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS4H: u16 = _; // 33_079u16
\ No newline at end of file +NOTE_DS4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS4H: u16 = _; // 33_079u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5.html index 92477f0..72bc6ae 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5.html @@ -1 +1 @@ -NOTE_DS5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS5: u16 = 622;
\ No newline at end of file +NOTE_DS5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS5: u16 = 622;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5H.html index 242a7db..b4c1fdc 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5H.html @@ -1 +1 @@ -NOTE_DS5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS5H: u16 = _; // 33_390u16
\ No newline at end of file +NOTE_DS5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS5H: u16 = _; // 33_390u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6.html index 632645e..d3252fa 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6.html @@ -1 +1 @@ -NOTE_DS6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS6: u16 = 1245;
\ No newline at end of file +NOTE_DS6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS6: u16 = 1245;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6H.html index cc4c2d2..c326fc3 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6H.html @@ -1 +1 @@ -NOTE_DS6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS6H: u16 = _; // 34_013u16
\ No newline at end of file +NOTE_DS6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS6H: u16 = _; // 34_013u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7.html index f2b5dce..4bb1d6b 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7.html @@ -1 +1 @@ -NOTE_DS7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS7: u16 = 2489;
\ No newline at end of file +NOTE_DS7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS7: u16 = 2489;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7H.html index b824d3a..35e6776 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7H.html @@ -1 +1 @@ -NOTE_DS7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS7H: u16 = _; // 35_257u16
\ No newline at end of file +NOTE_DS7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS7H: u16 = _; // 35_257u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8.html index df679c5..fe298b1 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8.html @@ -1 +1 @@ -NOTE_DS8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS8: u16 = 4978;
\ No newline at end of file +NOTE_DS8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS8: u16 = 4978;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8H.html index 2884e62..17bce55 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8H.html @@ -1 +1 @@ -NOTE_DS8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS8H: u16 = _; // 37_746u16
\ No newline at end of file +NOTE_DS8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS8H: u16 = _; // 37_746u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9.html index 7a17009..085e29d 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9.html @@ -1 +1 @@ -NOTE_DS9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS9: u16 = 9956;
\ No newline at end of file +NOTE_DS9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS9: u16 = 9956;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9H.html index a6f38dd..a377d39 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9H.html @@ -1 +1 @@ -NOTE_DS9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS9H: u16 = _; // 42_724u16
\ No newline at end of file +NOTE_DS9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_DS9H: u16 = _; // 42_724u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0.html index 4d72f52..2bde6bc 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0.html @@ -1 +1 @@ -NOTE_E0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E0: u16 = 21;
\ No newline at end of file +NOTE_E0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E0: u16 = 21;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0H.html index 7256e89..988cb80 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0H.html @@ -1 +1 @@ -NOTE_E0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E0H: u16 = _; // 32_789u16
\ No newline at end of file +NOTE_E0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E0H: u16 = _; // 32_789u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1.html index 1703943..fb6104c 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1.html @@ -1 +1 @@ -NOTE_E1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E1: u16 = 41;
\ No newline at end of file +NOTE_E1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E1: u16 = 41;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1H.html index 4de4f2b..908a580 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1H.html @@ -1 +1 @@ -NOTE_E1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E1H: u16 = _; // 32_809u16
\ No newline at end of file +NOTE_E1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E1H: u16 = _; // 32_809u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2.html index 396e866..a4ca6cf 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2.html @@ -1 +1 @@ -NOTE_E2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E2: u16 = 82;
\ No newline at end of file +NOTE_E2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E2: u16 = 82;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2H.html index 0a5c9fe..e941b1d 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2H.html @@ -1 +1 @@ -NOTE_E2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E2H: u16 = _; // 32_850u16
\ No newline at end of file +NOTE_E2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E2H: u16 = _; // 32_850u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3.html index c9dfac1..c32d770 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3.html @@ -1 +1 @@ -NOTE_E3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E3: u16 = 165;
\ No newline at end of file +NOTE_E3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E3: u16 = 165;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3H.html index cb61e7e..b4cf261 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3H.html @@ -1 +1 @@ -NOTE_E3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E3H: u16 = _; // 32_933u16
\ No newline at end of file +NOTE_E3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E3H: u16 = _; // 32_933u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4.html index 3fd237f..0b0e4ea 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4.html @@ -1 +1 @@ -NOTE_E4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E4: u16 = 330;
\ No newline at end of file +NOTE_E4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E4: u16 = 330;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4H.html index bbadb6b..6b696f0 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4H.html @@ -1 +1 @@ -NOTE_E4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E4H: u16 = _; // 33_098u16
\ No newline at end of file +NOTE_E4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E4H: u16 = _; // 33_098u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5.html index 3718eac..58ac96f 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5.html @@ -1 +1 @@ -NOTE_E5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E5: u16 = 659;
\ No newline at end of file +NOTE_E5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E5: u16 = 659;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5H.html index 01472cf..9d88703 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5H.html @@ -1 +1 @@ -NOTE_E5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E5H: u16 = _; // 33_427u16
\ No newline at end of file +NOTE_E5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E5H: u16 = _; // 33_427u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6.html index 671e096..0e57ba3 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6.html @@ -1 +1 @@ -NOTE_E6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E6: u16 = 1319;
\ No newline at end of file +NOTE_E6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E6: u16 = 1319;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6H.html index 0e6b2f6..9ea81bf 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6H.html @@ -1 +1 @@ -NOTE_E6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E6H: u16 = _; // 34_087u16
\ No newline at end of file +NOTE_E6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E6H: u16 = _; // 34_087u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7.html index bc2e386..46b5b20 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7.html @@ -1 +1 @@ -NOTE_E7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E7: u16 = 2637;
\ No newline at end of file +NOTE_E7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E7: u16 = 2637;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7H.html index 93f6568..36f31d1 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7H.html @@ -1 +1 @@ -NOTE_E7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E7H: u16 = _; // 35_405u16
\ No newline at end of file +NOTE_E7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E7H: u16 = _; // 35_405u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8.html index 175f49d..5bf998e 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8.html @@ -1 +1 @@ -NOTE_E8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E8: u16 = 5274;
\ No newline at end of file +NOTE_E8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E8: u16 = 5274;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8H.html index 84f4813..dd1b899 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8H.html @@ -1 +1 @@ -NOTE_E8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E8H: u16 = _; // 38_042u16
\ No newline at end of file +NOTE_E8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E8H: u16 = _; // 38_042u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9.html index b4e455a..569f746 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9.html @@ -1 +1 @@ -NOTE_E9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E9: u16 = 10548;
\ No newline at end of file +NOTE_E9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E9: u16 = 10548;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9H.html index 2826e31..db8b56a 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9H.html @@ -1 +1 @@ -NOTE_E9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E9H: u16 = _; // 43_316u16
\ No newline at end of file +NOTE_E9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_E9H: u16 = _; // 43_316u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0.html index d55ee1e..d95bd78 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0.html @@ -1 +1 @@ -NOTE_F0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F0: u16 = 22;
\ No newline at end of file +NOTE_F0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F0: u16 = 22;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0H.html index 27d22aa..767875d 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0H.html @@ -1 +1 @@ -NOTE_F0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F0H: u16 = _; // 32_790u16
\ No newline at end of file +NOTE_F0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F0H: u16 = _; // 32_790u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1.html index 7b532ad..cf474dc 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1.html @@ -1 +1 @@ -NOTE_F1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F1: u16 = 44;
\ No newline at end of file +NOTE_F1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F1: u16 = 44;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1H.html index 99ba6e1..a870e38 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1H.html @@ -1 +1 @@ -NOTE_F1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F1H: u16 = _; // 32_812u16
\ No newline at end of file +NOTE_F1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F1H: u16 = _; // 32_812u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2.html index 2c8509c..14fa1c7 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2.html @@ -1 +1 @@ -NOTE_F2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F2: u16 = 87;
\ No newline at end of file +NOTE_F2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F2: u16 = 87;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2H.html index 49ef78c..1beb61b 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2H.html @@ -1 +1 @@ -NOTE_F2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F2H: u16 = _; // 32_855u16
\ No newline at end of file +NOTE_F2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F2H: u16 = _; // 32_855u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3.html index d3823eb..d1f6488 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3.html @@ -1 +1 @@ -NOTE_F3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F3: u16 = 175;
\ No newline at end of file +NOTE_F3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F3: u16 = 175;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3H.html index 5978a7e..02c2c94 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3H.html @@ -1 +1 @@ -NOTE_F3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F3H: u16 = _; // 32_943u16
\ No newline at end of file +NOTE_F3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F3H: u16 = _; // 32_943u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4.html index 07c03a3..a418847 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4.html @@ -1 +1 @@ -NOTE_F4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F4: u16 = 349;
\ No newline at end of file +NOTE_F4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F4: u16 = 349;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4H.html index 5ce191c..6da3103 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4H.html @@ -1 +1 @@ -NOTE_F4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F4H: u16 = _; // 33_117u16
\ No newline at end of file +NOTE_F4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F4H: u16 = _; // 33_117u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5.html index 3d83c89..56dbcad 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5.html @@ -1 +1 @@ -NOTE_F5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F5: u16 = 698;
\ No newline at end of file +NOTE_F5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F5: u16 = 698;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5H.html index 5f4d158..a04c1dc 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5H.html @@ -1 +1 @@ -NOTE_F5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F5H: u16 = _; // 33_466u16
\ No newline at end of file +NOTE_F5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F5H: u16 = _; // 33_466u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6.html index 6a75b58..9c3cb0d 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6.html @@ -1 +1 @@ -NOTE_F6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F6: u16 = 1397;
\ No newline at end of file +NOTE_F6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F6: u16 = 1397;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6H.html index 1592252..255b744 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6H.html @@ -1 +1 @@ -NOTE_F6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F6H: u16 = _; // 34_165u16
\ No newline at end of file +NOTE_F6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F6H: u16 = _; // 34_165u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7.html index 50464a1..03ab1d9 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7.html @@ -1 +1 @@ -NOTE_F7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F7: u16 = 2794;
\ No newline at end of file +NOTE_F7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F7: u16 = 2794;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7H.html index fe10a71..d36b0a1 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7H.html @@ -1 +1 @@ -NOTE_F7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F7H: u16 = _; // 35_562u16
\ No newline at end of file +NOTE_F7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F7H: u16 = _; // 35_562u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8.html index 91c288d..ea0d2bb 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8.html @@ -1 +1 @@ -NOTE_F8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F8: u16 = 5588;
\ No newline at end of file +NOTE_F8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F8: u16 = 5588;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8H.html index 0258093..b2d9d18 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8H.html @@ -1 +1 @@ -NOTE_F8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F8H: u16 = _; // 38_356u16
\ No newline at end of file +NOTE_F8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F8H: u16 = _; // 38_356u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9.html index a8d11b3..c2871fd 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9.html @@ -1 +1 @@ -NOTE_F9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F9: u16 = 11175;
\ No newline at end of file +NOTE_F9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F9: u16 = 11175;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9H.html index c180d2e..02612e8 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9H.html @@ -1 +1 @@ -NOTE_F9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F9H: u16 = _; // 43_943u16
\ No newline at end of file +NOTE_F9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_F9H: u16 = _; // 43_943u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0.html index f407f01..cf75578 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0.html @@ -1 +1 @@ -NOTE_FS0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS0: u16 = 23;
\ No newline at end of file +NOTE_FS0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS0: u16 = 23;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0H.html index aa13e69..5a26cae 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0H.html @@ -1 +1 @@ -NOTE_FS0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS0H: u16 = _; // 32_791u16
\ No newline at end of file +NOTE_FS0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS0H: u16 = _; // 32_791u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1.html index 8af9819..cb3a8fe 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1.html @@ -1 +1 @@ -NOTE_FS1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS1: u16 = 46;
\ No newline at end of file +NOTE_FS1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS1: u16 = 46;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1H.html index bc4a697..560b073 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1H.html @@ -1 +1 @@ -NOTE_FS1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS1H: u16 = _; // 32_814u16
\ No newline at end of file +NOTE_FS1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS1H: u16 = _; // 32_814u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2.html index 7c5d6ce..2366b8d 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2.html @@ -1 +1 @@ -NOTE_FS2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS2: u16 = 93;
\ No newline at end of file +NOTE_FS2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS2: u16 = 93;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2H.html index 0fb067e..c58686d 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2H.html @@ -1 +1 @@ -NOTE_FS2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS2H: u16 = _; // 32_861u16
\ No newline at end of file +NOTE_FS2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS2H: u16 = _; // 32_861u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3.html index c044513..d491a14 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3.html @@ -1 +1 @@ -NOTE_FS3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS3: u16 = 185;
\ No newline at end of file +NOTE_FS3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS3: u16 = 185;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3H.html index acf0a67..160b64e 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3H.html @@ -1 +1 @@ -NOTE_FS3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS3H: u16 = _; // 32_943u16
\ No newline at end of file +NOTE_FS3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS3H: u16 = _; // 32_943u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4.html index 173e298..36d448d 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4.html @@ -1 +1 @@ -NOTE_FS4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS4: u16 = 370;
\ No newline at end of file +NOTE_FS4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS4: u16 = 370;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4H.html index 65a7f69..d9b86d1 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4H.html @@ -1 +1 @@ -NOTE_FS4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS4H: u16 = _; // 33_138u16
\ No newline at end of file +NOTE_FS4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS4H: u16 = _; // 33_138u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5.html index 54b747d..166ed6a 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5.html @@ -1 +1 @@ -NOTE_FS5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS5: u16 = 740;
\ No newline at end of file +NOTE_FS5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS5: u16 = 740;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5H.html index 69f95bb..66c1d84 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5H.html @@ -1 +1 @@ -NOTE_FS5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS5H: u16 = _; // 33_508u16
\ No newline at end of file +NOTE_FS5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS5H: u16 = _; // 33_508u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6.html index 74f5c0a..80e8a42 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6.html @@ -1 +1 @@ -NOTE_FS6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS6: u16 = 1480;
\ No newline at end of file +NOTE_FS6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS6: u16 = 1480;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6H.html index 8264f2d..acc5a3e 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6H.html @@ -1 +1 @@ -NOTE_FS6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS6H: u16 = _; // 34_248u16
\ No newline at end of file +NOTE_FS6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS6H: u16 = _; // 34_248u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7.html index 228ba25..20600fd 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7.html @@ -1 +1 @@ -NOTE_FS7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS7: u16 = 2960;
\ No newline at end of file +NOTE_FS7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS7: u16 = 2960;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7H.html index 83149a5..6ffaef5 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7H.html @@ -1 +1 @@ -NOTE_FS7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS7H: u16 = _; // 35_728u16
\ No newline at end of file +NOTE_FS7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS7H: u16 = _; // 35_728u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8.html index 9578614..9960856 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8.html @@ -1 +1 @@ -NOTE_FS8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS8: u16 = 5920;
\ No newline at end of file +NOTE_FS8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS8: u16 = 5920;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8H.html index 7d04dd6..a05384b 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8H.html @@ -1 +1 @@ -NOTE_FS8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS8H: u16 = _; // 38_688u16
\ No newline at end of file +NOTE_FS8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS8H: u16 = _; // 38_688u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9.html index edd78cc..2180e76 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9.html @@ -1 +1 @@ -NOTE_FS9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS9: u16 = 11840;
\ No newline at end of file +NOTE_FS9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS9: u16 = 11840;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9H.html index 62d65db..54d182e 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9H.html @@ -1 +1 @@ -NOTE_FS9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS9H: u16 = _; // 44_608u16
\ No newline at end of file +NOTE_FS9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_FS9H: u16 = _; // 44_608u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0.html index 5010f5e..a071791 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0.html @@ -1 +1 @@ -NOTE_G0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G0: u16 = 25;
\ No newline at end of file +NOTE_G0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G0: u16 = 25;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0H.html index 655ec15..5abeab6 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0H.html @@ -1 +1 @@ -NOTE_G0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G0H: u16 = _; // 32_793u16
\ No newline at end of file +NOTE_G0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G0H: u16 = _; // 32_793u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1.html index 112e65f..ed75789 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1.html @@ -1 +1 @@ -NOTE_G1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G1: u16 = 49;
\ No newline at end of file +NOTE_G1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G1: u16 = 49;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1H.html index b10aa6e..f690e93 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1H.html @@ -1 +1 @@ -NOTE_G1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G1H: u16 = _; // 32_817u16
\ No newline at end of file +NOTE_G1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G1H: u16 = _; // 32_817u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2.html index 0a0a9a9..6559bdd 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2.html @@ -1 +1 @@ -NOTE_G2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G2: u16 = 98;
\ No newline at end of file +NOTE_G2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G2: u16 = 98;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2H.html index baf5c46..6bad68a 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2H.html @@ -1 +1 @@ -NOTE_G2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G2H: u16 = _; // 32_866u16
\ No newline at end of file +NOTE_G2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G2H: u16 = _; // 32_866u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3.html index 159d6a4..d8c61e8 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3.html @@ -1 +1 @@ -NOTE_G3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G3: u16 = 196;
\ No newline at end of file +NOTE_G3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G3: u16 = 196;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3H.html index 3c793a5..ec2326d 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3H.html @@ -1 +1 @@ -NOTE_G3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G3H: u16 = _; // 32_964u16
\ No newline at end of file +NOTE_G3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G3H: u16 = _; // 32_964u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4.html index ce3d25f..fb45877 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4.html @@ -1 +1 @@ -NOTE_G4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G4: u16 = 392;
\ No newline at end of file +NOTE_G4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G4: u16 = 392;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4H.html index a1d7cec..9692dac 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4H.html @@ -1 +1 @@ -NOTE_G4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G4H: u16 = _; // 33_160u16
\ No newline at end of file +NOTE_G4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G4H: u16 = _; // 33_160u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5.html index 3cf4e19..e293b74 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5.html @@ -1 +1 @@ -NOTE_G5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G5: u16 = 784;
\ No newline at end of file +NOTE_G5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G5: u16 = 784;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5H.html index fec3c50..4d9e689 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5H.html @@ -1 +1 @@ -NOTE_G5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G5H: u16 = _; // 33_552u16
\ No newline at end of file +NOTE_G5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G5H: u16 = _; // 33_552u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6.html index 7fc94ea..5d92683 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6.html @@ -1 +1 @@ -NOTE_G6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G6: u16 = 1568;
\ No newline at end of file +NOTE_G6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G6: u16 = 1568;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6H.html index 12dd37c..312aa03 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6H.html @@ -1 +1 @@ -NOTE_G6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G6H: u16 = _; // 34_336u16
\ No newline at end of file +NOTE_G6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G6H: u16 = _; // 34_336u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7.html index 1f7c15f..0646433 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7.html @@ -1 +1 @@ -NOTE_G7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G7: u16 = 3136;
\ No newline at end of file +NOTE_G7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G7: u16 = 3136;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7H.html index 7b1c8b0..5b1877c 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7H.html @@ -1 +1 @@ -NOTE_G7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G7H: u16 = _; // 35_904u16
\ No newline at end of file +NOTE_G7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G7H: u16 = _; // 35_904u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8.html index 16a6995..71b6482 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8.html @@ -1 +1 @@ -NOTE_G8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G8: u16 = 6272;
\ No newline at end of file +NOTE_G8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G8: u16 = 6272;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8H.html index 37120a0..d4a62c4 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8H.html @@ -1 +1 @@ -NOTE_G8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G8H: u16 = _; // 39_040u16
\ No newline at end of file +NOTE_G8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G8H: u16 = _; // 39_040u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9.html index 1e0323d..6cf0b31 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9.html @@ -1 +1 @@ -NOTE_G9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G9: u16 = 12544;
\ No newline at end of file +NOTE_G9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G9: u16 = 12544;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9H.html index 6bdb792..b4f7287 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9H.html @@ -1 +1 @@ -NOTE_G9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G9H: u16 = _; // 45_312u16
\ No newline at end of file +NOTE_G9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_G9H: u16 = _; // 45_312u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0.html index 020a084..c0b4107 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0.html @@ -1 +1 @@ -NOTE_GS0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS0: u16 = 26;
\ No newline at end of file +NOTE_GS0 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS0: u16 = 26;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0H.html index a7dcfb9..f9cc88a 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0H.html @@ -1 +1 @@ -NOTE_GS0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS0H: u16 = _; // 32_794u16
\ No newline at end of file +NOTE_GS0H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS0H: u16 = _; // 32_794u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1.html index 063194b..f40dc5a 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1.html @@ -1 +1 @@ -NOTE_GS1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS1: u16 = 52;
\ No newline at end of file +NOTE_GS1 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS1: u16 = 52;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1H.html index 2685ec6..1d37222 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1H.html @@ -1 +1 @@ -NOTE_GS1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS1H: u16 = _; // 32_820u16
\ No newline at end of file +NOTE_GS1H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS1H: u16 = _; // 32_820u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2.html index a501343..f47f095 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2.html @@ -1 +1 @@ -NOTE_GS2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS2: u16 = 104;
\ No newline at end of file +NOTE_GS2 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS2: u16 = 104;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2H.html index 39be786..0b11854 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2H.html @@ -1 +1 @@ -NOTE_GS2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS2H: u16 = _; // 32_872u16
\ No newline at end of file +NOTE_GS2H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS2H: u16 = _; // 32_872u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3.html index b9ffec2..81bb598 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3.html @@ -1 +1 @@ -NOTE_GS3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS3: u16 = 208;
\ No newline at end of file +NOTE_GS3 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS3: u16 = 208;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3H.html index 4f9f371..4f10e7a 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3H.html @@ -1 +1 @@ -NOTE_GS3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS3H: u16 = _; // 32_976u16
\ No newline at end of file +NOTE_GS3H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS3H: u16 = _; // 32_976u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4.html index 91184c1..d12d86d 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4.html @@ -1 +1 @@ -NOTE_GS4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS4: u16 = 415;
\ No newline at end of file +NOTE_GS4 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS4: u16 = 415;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4H.html index c4d72b2..dbbc210 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4H.html @@ -1 +1 @@ -NOTE_GS4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS4H: u16 = _; // 33_183u16
\ No newline at end of file +NOTE_GS4H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS4H: u16 = _; // 33_183u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5.html index e93973c..3671f11 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5.html @@ -1 +1 @@ -NOTE_GS5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS5: u16 = 831;
\ No newline at end of file +NOTE_GS5 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS5: u16 = 831;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5H.html index 8927a3b..3d2c8bd 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5H.html @@ -1 +1 @@ -NOTE_GS5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS5H: u16 = _; // 33_599u16
\ No newline at end of file +NOTE_GS5H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS5H: u16 = _; // 33_599u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6.html index 2e41123..08e3fe4 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6.html @@ -1 +1 @@ -NOTE_GS6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS6: u16 = 1661;
\ No newline at end of file +NOTE_GS6 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS6: u16 = 1661;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6H.html index 3ed33ee..55790f0 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6H.html @@ -1 +1 @@ -NOTE_GS6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS6H: u16 = _; // 34_429u16
\ No newline at end of file +NOTE_GS6H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS6H: u16 = _; // 34_429u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7.html index 4a524e4..7c37682 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7.html @@ -1 +1 @@ -NOTE_GS7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS7: u16 = 3322;
\ No newline at end of file +NOTE_GS7 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS7: u16 = 3322;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7H.html index a3bd1fe..13c9c21 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7H.html @@ -1 +1 @@ -NOTE_GS7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS7H: u16 = _; // 36_090u16
\ No newline at end of file +NOTE_GS7H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS7H: u16 = _; // 36_090u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8.html index 2393f7f..e50db61 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8.html @@ -1 +1 @@ -NOTE_GS8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS8: u16 = 6645;
\ No newline at end of file +NOTE_GS8 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS8: u16 = 6645;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8H.html index 516bd46..ab3da7e 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8H.html @@ -1 +1 @@ -NOTE_GS8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS8H: u16 = _; // 39_413u16
\ No newline at end of file +NOTE_GS8H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS8H: u16 = _; // 39_413u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9.html index 8567c73..b8ed6a8 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9.html @@ -1 +1 @@ -NOTE_GS9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS9: u16 = 13290;
\ No newline at end of file +NOTE_GS9 in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS9: u16 = 13290;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9H.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9H.html index 195f7b0..5a42098 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9H.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9H.html @@ -1 +1 @@ -NOTE_GS9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS9H: u16 = _; // 46_058u16
\ No newline at end of file +NOTE_GS9H in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_GS9H: u16 = _; // 46_058u16
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_REST.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_REST.html index b0a94e3..6172308 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_REST.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.NOTE_REST.html @@ -1 +1 @@ -NOTE_REST in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_REST: u16 = 0;
\ No newline at end of file +NOTE_REST in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const NOTE_REST: u16 = 0;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.TONES_END.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.TONES_END.html index 3f1a89a..39e458b 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.TONES_END.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.TONES_END.html @@ -1 +1 @@ -TONES_END in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const TONES_END: u16 = 0x8000;
\ No newline at end of file +TONES_END in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const TONES_END: u16 = 0x8000;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.TONES_REPEAT.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.TONES_REPEAT.html index 4ab8ea2..b8d4d39 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.TONES_REPEAT.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.TONES_REPEAT.html @@ -1 +1 @@ -TONES_REPEAT in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const TONES_REPEAT: u16 = 0x8001;
\ No newline at end of file +TONES_REPEAT in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const TONES_REPEAT: u16 = 0x8001;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.TONE_HIGH_VOLUME.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.TONE_HIGH_VOLUME.html index 37dbf36..2d1285b 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.TONE_HIGH_VOLUME.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.TONE_HIGH_VOLUME.html @@ -1 +1 @@ -TONE_HIGH_VOLUME in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const TONE_HIGH_VOLUME: u16 = 0x8000;
\ No newline at end of file +TONE_HIGH_VOLUME in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const TONE_HIGH_VOLUME: u16 = 0x8000;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_HIGH.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_HIGH.html index d8f9db3..7bb493b 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_HIGH.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_HIGH.html @@ -1 +1 @@ -VOLUME_ALWAYS_HIGH in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const VOLUME_ALWAYS_HIGH: u8 = 2;
\ No newline at end of file +VOLUME_ALWAYS_HIGH in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const VOLUME_ALWAYS_HIGH: u8 = 2;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_NORMAL.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_NORMAL.html index fac0482..3a05767 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_NORMAL.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_NORMAL.html @@ -1 +1 @@ -VOLUME_ALWAYS_NORMAL in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const VOLUME_ALWAYS_NORMAL: u8 = 1;
\ No newline at end of file +VOLUME_ALWAYS_NORMAL in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const VOLUME_ALWAYS_NORMAL: u8 = 1;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_IN_TONE.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_IN_TONE.html index 346e839..da0b1b8 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_IN_TONE.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_IN_TONE.html @@ -1 +1 @@ -VOLUME_IN_TONE in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const VOLUME_IN_TONE: u8 = 0;
\ No newline at end of file +VOLUME_IN_TONE in arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
pub const VOLUME_IN_TONE: u8 = 0;
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/index.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/index.html index f049d89..efc0e02 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/index.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/arduboy_tone_pitch/index.html @@ -1,2 +1,2 @@ -arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
Expand description

A list of all tones available and used by the Sounds library Arduboy2Tones

+arduboy_rust::prelude::arduboy_tone::arduboy_tone_pitch - Rust
Expand description

A list of all tones available and used by the Sounds library Arduboy2Tones

Constants

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/index.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/index.html index 5c03a35..7871d3f 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/index.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/index.html @@ -1,2 +1,2 @@ -arduboy_rust::prelude::arduboy_tone - Rust
Expand description

This is the Module to interact in a save way with the ArduboyTones C++ library.

+arduboy_rust::prelude::arduboy_tone - Rust
Expand description

This is the Module to interact in a save way with the ArduboyTones C++ library.

Modules

  • A list of all tones available and used by the Sounds library Arduboy2Tones

Structs

  • This is the struct to interact in a save way with the ArduboyTones C++ library.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/arduboy_tone/struct.ArduboyTones.html b/docs/doc/arduboy_rust/prelude/arduboy_tone/struct.ArduboyTones.html index 9081498..ad9ba33 100644 --- a/docs/doc/arduboy_rust/prelude/arduboy_tone/struct.ArduboyTones.html +++ b/docs/doc/arduboy_rust/prelude/arduboy_tone/struct.ArduboyTones.html @@ -1,4 +1,4 @@ -ArduboyTones in arduboy_rust::prelude::arduboy_tone - Rust
pub struct ArduboyTones {}
Expand description

This is the struct to interact in a save way with the ArduboyTones C++ library.

+ArduboyTones in arduboy_rust::prelude::arduboy_tone - Rust
pub struct ArduboyTones {}
Expand description

This is the struct to interact in a save way with the ArduboyTones C++ library.

Implementations§

source§

impl ArduboyTones

source

pub const fn new() -> ArduboyTones

Get a new instance of ArduboyTones

Example
const sound: ArduboyTones = ArduboyTones::new();
@@ -89,5 +89,5 @@ itself.

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/buttons/constant.A.html b/docs/doc/arduboy_rust/prelude/buttons/constant.A.html index 4750dbd..341ce5b 100644 --- a/docs/doc/arduboy_rust/prelude/buttons/constant.A.html +++ b/docs/doc/arduboy_rust/prelude/buttons/constant.A.html @@ -1,2 +1,2 @@ -A in arduboy_rust::prelude::buttons - Rust

Constant arduboy_rust::prelude::buttons::A

source ·
pub const A: ButtonSet;
Expand description

Just a const for the A button

+A in arduboy_rust::prelude::buttons - Rust

Constant arduboy_rust::prelude::buttons::A

source ·
pub const A: ButtonSet;
Expand description

Just a const for the A button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/buttons/constant.A_BUTTON.html b/docs/doc/arduboy_rust/prelude/buttons/constant.A_BUTTON.html index 9669b2d..73941ab 100644 --- a/docs/doc/arduboy_rust/prelude/buttons/constant.A_BUTTON.html +++ b/docs/doc/arduboy_rust/prelude/buttons/constant.A_BUTTON.html @@ -1,2 +1,2 @@ -A_BUTTON in arduboy_rust::prelude::buttons - Rust
pub const A_BUTTON: ButtonSet;
Expand description

Just a const for the A button

+A_BUTTON in arduboy_rust::prelude::buttons - Rust
pub const A_BUTTON: ButtonSet;
Expand description

Just a const for the A button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/buttons/constant.B.html b/docs/doc/arduboy_rust/prelude/buttons/constant.B.html index 49168dd..1d95bd6 100644 --- a/docs/doc/arduboy_rust/prelude/buttons/constant.B.html +++ b/docs/doc/arduboy_rust/prelude/buttons/constant.B.html @@ -1,2 +1,2 @@ -B in arduboy_rust::prelude::buttons - Rust

Constant arduboy_rust::prelude::buttons::B

source ·
pub const B: ButtonSet;
Expand description

Just a const for the B button

+B in arduboy_rust::prelude::buttons - Rust

Constant arduboy_rust::prelude::buttons::B

source ·
pub const B: ButtonSet;
Expand description

Just a const for the B button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/buttons/constant.B_BUTTON.html b/docs/doc/arduboy_rust/prelude/buttons/constant.B_BUTTON.html index 20e6dec..6d776fb 100644 --- a/docs/doc/arduboy_rust/prelude/buttons/constant.B_BUTTON.html +++ b/docs/doc/arduboy_rust/prelude/buttons/constant.B_BUTTON.html @@ -1,2 +1,2 @@ -B_BUTTON in arduboy_rust::prelude::buttons - Rust
pub const B_BUTTON: ButtonSet;
Expand description

Just a const for the B button

+B_BUTTON in arduboy_rust::prelude::buttons - Rust
pub const B_BUTTON: ButtonSet;
Expand description

Just a const for the B button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/buttons/constant.DOWN.html b/docs/doc/arduboy_rust/prelude/buttons/constant.DOWN.html index aa0a30a..35da347 100644 --- a/docs/doc/arduboy_rust/prelude/buttons/constant.DOWN.html +++ b/docs/doc/arduboy_rust/prelude/buttons/constant.DOWN.html @@ -1,2 +1,2 @@ -DOWN in arduboy_rust::prelude::buttons - Rust

Constant arduboy_rust::prelude::buttons::DOWN

source ·
pub const DOWN: ButtonSet;
Expand description

Just a const for the DOWN button

+DOWN in arduboy_rust::prelude::buttons - Rust

Constant arduboy_rust::prelude::buttons::DOWN

source ·
pub const DOWN: ButtonSet;
Expand description

Just a const for the DOWN button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/buttons/constant.DOWN_BUTTON.html b/docs/doc/arduboy_rust/prelude/buttons/constant.DOWN_BUTTON.html index a84a9f3..fc77024 100644 --- a/docs/doc/arduboy_rust/prelude/buttons/constant.DOWN_BUTTON.html +++ b/docs/doc/arduboy_rust/prelude/buttons/constant.DOWN_BUTTON.html @@ -1,2 +1,2 @@ -DOWN_BUTTON in arduboy_rust::prelude::buttons - Rust
pub const DOWN_BUTTON: ButtonSet;
Expand description

Just a const for the DOWN button

+DOWN_BUTTON in arduboy_rust::prelude::buttons - Rust
pub const DOWN_BUTTON: ButtonSet;
Expand description

Just a const for the DOWN button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/buttons/constant.LEFT.html b/docs/doc/arduboy_rust/prelude/buttons/constant.LEFT.html index b264fbb..31ef43f 100644 --- a/docs/doc/arduboy_rust/prelude/buttons/constant.LEFT.html +++ b/docs/doc/arduboy_rust/prelude/buttons/constant.LEFT.html @@ -1,2 +1,2 @@ -LEFT in arduboy_rust::prelude::buttons - Rust

Constant arduboy_rust::prelude::buttons::LEFT

source ·
pub const LEFT: ButtonSet;
Expand description

Just a const for the LEFT button

+LEFT in arduboy_rust::prelude::buttons - Rust

Constant arduboy_rust::prelude::buttons::LEFT

source ·
pub const LEFT: ButtonSet;
Expand description

Just a const for the LEFT button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/buttons/constant.LEFT_BUTTON.html b/docs/doc/arduboy_rust/prelude/buttons/constant.LEFT_BUTTON.html index 7d16e6d..4d7872c 100644 --- a/docs/doc/arduboy_rust/prelude/buttons/constant.LEFT_BUTTON.html +++ b/docs/doc/arduboy_rust/prelude/buttons/constant.LEFT_BUTTON.html @@ -1,2 +1,2 @@ -LEFT_BUTTON in arduboy_rust::prelude::buttons - Rust
pub const LEFT_BUTTON: ButtonSet;
Expand description

Just a const for the LEFT button

+LEFT_BUTTON in arduboy_rust::prelude::buttons - Rust
pub const LEFT_BUTTON: ButtonSet;
Expand description

Just a const for the LEFT button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/buttons/constant.RIGHT.html b/docs/doc/arduboy_rust/prelude/buttons/constant.RIGHT.html index 4615608..a613e8a 100644 --- a/docs/doc/arduboy_rust/prelude/buttons/constant.RIGHT.html +++ b/docs/doc/arduboy_rust/prelude/buttons/constant.RIGHT.html @@ -1,2 +1,2 @@ -RIGHT in arduboy_rust::prelude::buttons - Rust
pub const RIGHT: ButtonSet;
Expand description

Just a const for the RIGHT button

+RIGHT in arduboy_rust::prelude::buttons - Rust
pub const RIGHT: ButtonSet;
Expand description

Just a const for the RIGHT button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/buttons/constant.RIGHT_BUTTON.html b/docs/doc/arduboy_rust/prelude/buttons/constant.RIGHT_BUTTON.html index 6c1ceef..89f9157 100644 --- a/docs/doc/arduboy_rust/prelude/buttons/constant.RIGHT_BUTTON.html +++ b/docs/doc/arduboy_rust/prelude/buttons/constant.RIGHT_BUTTON.html @@ -1,2 +1,2 @@ -RIGHT_BUTTON in arduboy_rust::prelude::buttons - Rust
pub const RIGHT_BUTTON: ButtonSet;
Expand description

Just a const for the RIGHT button

+RIGHT_BUTTON in arduboy_rust::prelude::buttons - Rust
pub const RIGHT_BUTTON: ButtonSet;
Expand description

Just a const for the RIGHT button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/buttons/constant.UP.html b/docs/doc/arduboy_rust/prelude/buttons/constant.UP.html index d95406a..66756ec 100644 --- a/docs/doc/arduboy_rust/prelude/buttons/constant.UP.html +++ b/docs/doc/arduboy_rust/prelude/buttons/constant.UP.html @@ -1,2 +1,2 @@ -UP in arduboy_rust::prelude::buttons - Rust

Constant arduboy_rust::prelude::buttons::UP

source ·
pub const UP: ButtonSet;
Expand description

Just a const for the UP button

+UP in arduboy_rust::prelude::buttons - Rust

Constant arduboy_rust::prelude::buttons::UP

source ·
pub const UP: ButtonSet;
Expand description

Just a const for the UP button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/buttons/constant.UP_BUTTON.html b/docs/doc/arduboy_rust/prelude/buttons/constant.UP_BUTTON.html index 612ec57..6931828 100644 --- a/docs/doc/arduboy_rust/prelude/buttons/constant.UP_BUTTON.html +++ b/docs/doc/arduboy_rust/prelude/buttons/constant.UP_BUTTON.html @@ -1,2 +1,2 @@ -UP_BUTTON in arduboy_rust::prelude::buttons - Rust
pub const UP_BUTTON: ButtonSet;
Expand description

Just a const for the UP button

+UP_BUTTON in arduboy_rust::prelude::buttons - Rust
pub const UP_BUTTON: ButtonSet;
Expand description

Just a const for the UP button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/buttons/index.html b/docs/doc/arduboy_rust/prelude/buttons/index.html index e5524ac..1f10e23 100644 --- a/docs/doc/arduboy_rust/prelude/buttons/index.html +++ b/docs/doc/arduboy_rust/prelude/buttons/index.html @@ -1,2 +1,2 @@ -arduboy_rust::prelude::buttons - Rust
Expand description

A list of all six buttons available on the Arduboy

+arduboy_rust::prelude::buttons - Rust
Expand description

A list of all six buttons available on the Arduboy

Structs

  • This struct gives the library a understanding what Buttons on the Arduboy are.

Constants

  • Just a const for the A button
  • Just a const for the A button
  • Just a const for the B button
  • Just a const for the B button
  • Just a const for the DOWN button
  • Just a const for the DOWN button
  • Just a const for the LEFT button
  • Just a const for the LEFT button
  • Just a const for the RIGHT button
  • Just a const for the RIGHT button
  • Just a const for the UP button
  • Just a const for the UP button
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/buttons/struct.ButtonSet.html b/docs/doc/arduboy_rust/prelude/buttons/struct.ButtonSet.html index 34865c2..932dd39 100644 --- a/docs/doc/arduboy_rust/prelude/buttons/struct.ButtonSet.html +++ b/docs/doc/arduboy_rust/prelude/buttons/struct.ButtonSet.html @@ -1,4 +1,4 @@ -ButtonSet in arduboy_rust::prelude::buttons - Rust
pub struct ButtonSet {
+ButtonSet in arduboy_rust::prelude::buttons - Rust
pub struct ButtonSet {
     pub flag_set: u8,
 }
Expand description

This struct gives the library a understanding what Buttons on the Arduboy are.

Fields§

§flag_set: u8

Implementations§

source§

impl ButtonSet

source

pub unsafe fn pressed(&self) -> bool

source

pub unsafe fn just_pressed(&self) -> bool

source

pub unsafe fn just_released(&self) -> bool

source

pub unsafe fn not_pressed(&self) -> bool

Trait Implementations§

source§

impl BitOr<ButtonSet> for ButtonSet

§

type Output = ButtonSet

The resulting type after applying the | operator.
source§

fn bitor(self, other: Self) -> Self

Performs the | operation. Read more
source§

impl Clone for ButtonSet

source§

fn clone(&self) -> ButtonSet

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ButtonSet

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Hash for ButtonSet

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given [Hasher]. Read more
1.3.0§

fn hash_slice<H>(data: &[Self], state: &mut H)where @@ -19,5 +19,5 @@ operator. Read more

§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.A.html b/docs/doc/arduboy_rust/prelude/constant.A.html index 7e8a597..4fae1bc 100644 --- a/docs/doc/arduboy_rust/prelude/constant.A.html +++ b/docs/doc/arduboy_rust/prelude/constant.A.html @@ -1,2 +1,2 @@ -A in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::A

source ·
pub const A: ButtonSet;
Expand description

Just a const for the A button

+A in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::A

source ·
pub const A: ButtonSet;
Expand description

Just a const for the A button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.A_BUTTON.html b/docs/doc/arduboy_rust/prelude/constant.A_BUTTON.html index 5dca1fe..32d1f58 100644 --- a/docs/doc/arduboy_rust/prelude/constant.A_BUTTON.html +++ b/docs/doc/arduboy_rust/prelude/constant.A_BUTTON.html @@ -1,2 +1,2 @@ -A_BUTTON in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::A_BUTTON

source ·
pub const A_BUTTON: ButtonSet;
Expand description

Just a const for the A button

+A_BUTTON in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::A_BUTTON

source ·
pub const A_BUTTON: ButtonSet;
Expand description

Just a const for the A button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.B.html b/docs/doc/arduboy_rust/prelude/constant.B.html index 48bcc1a..51080ba 100644 --- a/docs/doc/arduboy_rust/prelude/constant.B.html +++ b/docs/doc/arduboy_rust/prelude/constant.B.html @@ -1,2 +1,2 @@ -B in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::B

source ·
pub const B: ButtonSet;
Expand description

Just a const for the B button

+B in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::B

source ·
pub const B: ButtonSet;
Expand description

Just a const for the B button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.BLUE_LED.html b/docs/doc/arduboy_rust/prelude/constant.BLUE_LED.html index 0d75a74..814d711 100644 --- a/docs/doc/arduboy_rust/prelude/constant.BLUE_LED.html +++ b/docs/doc/arduboy_rust/prelude/constant.BLUE_LED.html @@ -1,2 +1,2 @@ -BLUE_LED in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::BLUE_LED

source ·
pub const BLUE_LED: u8 = 9;
Expand description

Just a const for the blue led

+BLUE_LED in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::BLUE_LED

source ·
pub const BLUE_LED: u8 = 9;
Expand description

Just a const for the blue led

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.B_BUTTON.html b/docs/doc/arduboy_rust/prelude/constant.B_BUTTON.html index 796946c..7878eb6 100644 --- a/docs/doc/arduboy_rust/prelude/constant.B_BUTTON.html +++ b/docs/doc/arduboy_rust/prelude/constant.B_BUTTON.html @@ -1,2 +1,2 @@ -B_BUTTON in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::B_BUTTON

source ·
pub const B_BUTTON: ButtonSet;
Expand description

Just a const for the B button

+B_BUTTON in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::B_BUTTON

source ·
pub const B_BUTTON: ButtonSet;
Expand description

Just a const for the B button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.DOWN.html b/docs/doc/arduboy_rust/prelude/constant.DOWN.html index 4f6a8e3..c6d4f9e 100644 --- a/docs/doc/arduboy_rust/prelude/constant.DOWN.html +++ b/docs/doc/arduboy_rust/prelude/constant.DOWN.html @@ -1,2 +1,2 @@ -DOWN in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::DOWN

source ·
pub const DOWN: ButtonSet;
Expand description

Just a const for the DOWN button

+DOWN in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::DOWN

source ·
pub const DOWN: ButtonSet;
Expand description

Just a const for the DOWN button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.DOWN_BUTTON.html b/docs/doc/arduboy_rust/prelude/constant.DOWN_BUTTON.html index 03cd998..1f0c3ce 100644 --- a/docs/doc/arduboy_rust/prelude/constant.DOWN_BUTTON.html +++ b/docs/doc/arduboy_rust/prelude/constant.DOWN_BUTTON.html @@ -1,2 +1,2 @@ -DOWN_BUTTON in arduboy_rust::prelude - Rust
pub const DOWN_BUTTON: ButtonSet;
Expand description

Just a const for the DOWN button

+DOWN_BUTTON in arduboy_rust::prelude - Rust
pub const DOWN_BUTTON: ButtonSet;
Expand description

Just a const for the DOWN button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.FONT_SIZE.html b/docs/doc/arduboy_rust/prelude/constant.FONT_SIZE.html index 6e598ce..f6a1c67 100644 --- a/docs/doc/arduboy_rust/prelude/constant.FONT_SIZE.html +++ b/docs/doc/arduboy_rust/prelude/constant.FONT_SIZE.html @@ -1,3 +1,3 @@ -FONT_SIZE in arduboy_rust::prelude - Rust
pub const FONT_SIZE: u8 = 6;
Expand description

The standard font size of the arduboy

+FONT_SIZE in arduboy_rust::prelude - Rust
pub const FONT_SIZE: u8 = 6;
Expand description

The standard font size of the arduboy

this is to calculate with it.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.GREEN_LED.html b/docs/doc/arduboy_rust/prelude/constant.GREEN_LED.html index 3a1db8b..20c47fb 100644 --- a/docs/doc/arduboy_rust/prelude/constant.GREEN_LED.html +++ b/docs/doc/arduboy_rust/prelude/constant.GREEN_LED.html @@ -1,2 +1,2 @@ -GREEN_LED in arduboy_rust::prelude - Rust
pub const GREEN_LED: u8 = 11;
Expand description

Just a const for the green led

+GREEN_LED in arduboy_rust::prelude - Rust
pub const GREEN_LED: u8 = 11;
Expand description

Just a const for the green led

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.HEIGHT.html b/docs/doc/arduboy_rust/prelude/constant.HEIGHT.html index 3d8561c..dda5f4d 100644 --- a/docs/doc/arduboy_rust/prelude/constant.HEIGHT.html +++ b/docs/doc/arduboy_rust/prelude/constant.HEIGHT.html @@ -1,3 +1,3 @@ -HEIGHT in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::HEIGHT

source ·
pub const HEIGHT: u8 = 64;
Expand description

The standard height of the arduboy

+HEIGHT in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::HEIGHT

source ·
pub const HEIGHT: u8 = 64;
Expand description

The standard height of the arduboy

this is to calculate with it.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.LEFT.html b/docs/doc/arduboy_rust/prelude/constant.LEFT.html index 6fc8b43..8768487 100644 --- a/docs/doc/arduboy_rust/prelude/constant.LEFT.html +++ b/docs/doc/arduboy_rust/prelude/constant.LEFT.html @@ -1,2 +1,2 @@ -LEFT in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::LEFT

source ·
pub const LEFT: ButtonSet;
Expand description

Just a const for the LEFT button

+LEFT in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::LEFT

source ·
pub const LEFT: ButtonSet;
Expand description

Just a const for the LEFT button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.LEFT_BUTTON.html b/docs/doc/arduboy_rust/prelude/constant.LEFT_BUTTON.html index 8ca1137..3760458 100644 --- a/docs/doc/arduboy_rust/prelude/constant.LEFT_BUTTON.html +++ b/docs/doc/arduboy_rust/prelude/constant.LEFT_BUTTON.html @@ -1,2 +1,2 @@ -LEFT_BUTTON in arduboy_rust::prelude - Rust
pub const LEFT_BUTTON: ButtonSet;
Expand description

Just a const for the LEFT button

+LEFT_BUTTON in arduboy_rust::prelude - Rust
pub const LEFT_BUTTON: ButtonSet;
Expand description

Just a const for the LEFT button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.RED_LED.html b/docs/doc/arduboy_rust/prelude/constant.RED_LED.html index b2c6728..1ae3428 100644 --- a/docs/doc/arduboy_rust/prelude/constant.RED_LED.html +++ b/docs/doc/arduboy_rust/prelude/constant.RED_LED.html @@ -1,2 +1,2 @@ -RED_LED in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::RED_LED

source ·
pub const RED_LED: u8 = 10;
Expand description

Just a const for the red led

+RED_LED in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::RED_LED

source ·
pub const RED_LED: u8 = 10;
Expand description

Just a const for the red led

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.RGB_OFF.html b/docs/doc/arduboy_rust/prelude/constant.RGB_OFF.html index bda245c..c6d94e5 100644 --- a/docs/doc/arduboy_rust/prelude/constant.RGB_OFF.html +++ b/docs/doc/arduboy_rust/prelude/constant.RGB_OFF.html @@ -1,2 +1,2 @@ -RGB_OFF in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::RGB_OFF

source ·
pub const RGB_OFF: u8 = 0;
Expand description

Just a const for led off

+RGB_OFF in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::RGB_OFF

source ·
pub const RGB_OFF: u8 = 0;
Expand description

Just a const for led off

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.RGB_ON.html b/docs/doc/arduboy_rust/prelude/constant.RGB_ON.html index f0d97a6..bae8b21 100644 --- a/docs/doc/arduboy_rust/prelude/constant.RGB_ON.html +++ b/docs/doc/arduboy_rust/prelude/constant.RGB_ON.html @@ -1,2 +1,2 @@ -RGB_ON in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::RGB_ON

source ·
pub const RGB_ON: u8 = 1;
Expand description

Just a const for led on

+RGB_ON in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::RGB_ON

source ·
pub const RGB_ON: u8 = 1;
Expand description

Just a const for led on

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.RIGHT.html b/docs/doc/arduboy_rust/prelude/constant.RIGHT.html index db639d4..4a7d6be 100644 --- a/docs/doc/arduboy_rust/prelude/constant.RIGHT.html +++ b/docs/doc/arduboy_rust/prelude/constant.RIGHT.html @@ -1,2 +1,2 @@ -RIGHT in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::RIGHT

source ·
pub const RIGHT: ButtonSet;
Expand description

Just a const for the RIGHT button

+RIGHT in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::RIGHT

source ·
pub const RIGHT: ButtonSet;
Expand description

Just a const for the RIGHT button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.RIGHT_BUTTON.html b/docs/doc/arduboy_rust/prelude/constant.RIGHT_BUTTON.html index 8736a15..9195ae0 100644 --- a/docs/doc/arduboy_rust/prelude/constant.RIGHT_BUTTON.html +++ b/docs/doc/arduboy_rust/prelude/constant.RIGHT_BUTTON.html @@ -1,2 +1,2 @@ -RIGHT_BUTTON in arduboy_rust::prelude - Rust
pub const RIGHT_BUTTON: ButtonSet;
Expand description

Just a const for the RIGHT button

+RIGHT_BUTTON in arduboy_rust::prelude - Rust
pub const RIGHT_BUTTON: ButtonSet;
Expand description

Just a const for the RIGHT button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.UP.html b/docs/doc/arduboy_rust/prelude/constant.UP.html index d0d0917..c86aaf0 100644 --- a/docs/doc/arduboy_rust/prelude/constant.UP.html +++ b/docs/doc/arduboy_rust/prelude/constant.UP.html @@ -1,2 +1,2 @@ -UP in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::UP

source ·
pub const UP: ButtonSet;
Expand description

Just a const for the UP button

+UP in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::UP

source ·
pub const UP: ButtonSet;
Expand description

Just a const for the UP button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.UP_BUTTON.html b/docs/doc/arduboy_rust/prelude/constant.UP_BUTTON.html index 5f80163..03390c0 100644 --- a/docs/doc/arduboy_rust/prelude/constant.UP_BUTTON.html +++ b/docs/doc/arduboy_rust/prelude/constant.UP_BUTTON.html @@ -1,2 +1,2 @@ -UP_BUTTON in arduboy_rust::prelude - Rust
pub const UP_BUTTON: ButtonSet;
Expand description

Just a const for the UP button

+UP_BUTTON in arduboy_rust::prelude - Rust
pub const UP_BUTTON: ButtonSet;
Expand description

Just a const for the UP button

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/constant.WIDTH.html b/docs/doc/arduboy_rust/prelude/constant.WIDTH.html index 8da33c5..0b0ee2e 100644 --- a/docs/doc/arduboy_rust/prelude/constant.WIDTH.html +++ b/docs/doc/arduboy_rust/prelude/constant.WIDTH.html @@ -1,3 +1,3 @@ -WIDTH in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::WIDTH

source ·
pub const WIDTH: u8 = 128;
Expand description

The standard width of the arduboy

+WIDTH in arduboy_rust::prelude - Rust

Constant arduboy_rust::prelude::WIDTH

source ·
pub const WIDTH: u8 = 128;
Expand description

The standard width of the arduboy

this is to calculate with it.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/enum.Base.html b/docs/doc/arduboy_rust/prelude/enum.Base.html index 72bc2b0..8223192 100644 --- a/docs/doc/arduboy_rust/prelude/enum.Base.html +++ b/docs/doc/arduboy_rust/prelude/enum.Base.html @@ -1,4 +1,4 @@ -Base in arduboy_rust::prelude - Rust
§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/enum.Color.html b/docs/doc/arduboy_rust/prelude/enum.Color.html index a8546e4..74a30ae 100644 --- a/docs/doc/arduboy_rust/prelude/enum.Color.html +++ b/docs/doc/arduboy_rust/prelude/enum.Color.html @@ -1,4 +1,4 @@ -Color in arduboy_rust::prelude - Rust
§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/fn.constrain.html b/docs/doc/arduboy_rust/prelude/fn.constrain.html index ddd1b11..fb8b2cd 100644 --- a/docs/doc/arduboy_rust/prelude/fn.constrain.html +++ b/docs/doc/arduboy_rust/prelude/fn.constrain.html @@ -1 +1 @@ -constrain in arduboy_rust::prelude - Rust
pub fn constrain<T: Ord>(x: T, a: T, b: T) -> T
\ No newline at end of file +constrain in arduboy_rust::prelude - Rust
pub fn constrain<T: Ord>(x: T, a: T, b: T) -> T
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/fn.delay.html b/docs/doc/arduboy_rust/prelude/fn.delay.html index aa30fd7..d5e6211 100644 --- a/docs/doc/arduboy_rust/prelude/fn.delay.html +++ b/docs/doc/arduboy_rust/prelude/fn.delay.html @@ -1,2 +1,2 @@ -delay in arduboy_rust::prelude - Rust

Function arduboy_rust::prelude::delay

source ·
pub fn delay(ms: u32)
Expand description

A Arduino function to pause the cpu circles for a given amount of ms

+delay in arduboy_rust::prelude - Rust

Function arduboy_rust::prelude::delay

source ·
pub fn delay(ms: u32)
Expand description

A Arduino function to pause the cpu circles for a given amount of ms

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/fn.random_between.html b/docs/doc/arduboy_rust/prelude/fn.random_between.html index d45643a..bf0e9ed 100644 --- a/docs/doc/arduboy_rust/prelude/fn.random_between.html +++ b/docs/doc/arduboy_rust/prelude/fn.random_between.html @@ -1,3 +1,3 @@ -random_between in arduboy_rust::prelude - Rust
pub fn random_between(min: i32, max: i32) -> i32
Expand description

A Arduino function to get a random number between 2 numbers +random_between in arduboy_rust::prelude - Rust

pub fn random_between(min: i32, max: i32) -> i32
Expand description

A Arduino function to get a random number between 2 numbers seed based

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/fn.random_less_than.html b/docs/doc/arduboy_rust/prelude/fn.random_less_than.html index f5ac00c..e9eb5e6 100644 --- a/docs/doc/arduboy_rust/prelude/fn.random_less_than.html +++ b/docs/doc/arduboy_rust/prelude/fn.random_less_than.html @@ -1,3 +1,3 @@ -random_less_than in arduboy_rust::prelude - Rust
pub fn random_less_than(max: i32) -> i32
Expand description

A Arduino function to get a random number smaller than the number given +random_less_than in arduboy_rust::prelude - Rust

pub fn random_less_than(max: i32) -> i32
Expand description

A Arduino function to get a random number smaller than the number given seed based

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/fn.strlen.html b/docs/doc/arduboy_rust/prelude/fn.strlen.html index 19576b3..9649290 100644 --- a/docs/doc/arduboy_rust/prelude/fn.strlen.html +++ b/docs/doc/arduboy_rust/prelude/fn.strlen.html @@ -1,2 +1,2 @@ -strlen in arduboy_rust::prelude - Rust

Function arduboy_rust::prelude::strlen

source ·
pub fn strlen(cstr: *const i8) -> usize
Expand description

A C function to get the length of a string

+strlen in arduboy_rust::prelude - Rust

Function arduboy_rust::prelude::strlen

source ·
pub fn strlen(cstr: *const i8) -> usize
Expand description

A C function to get the length of a string

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/index.html b/docs/doc/arduboy_rust/prelude/index.html index 01bb66c..0d02efb 100644 --- a/docs/doc/arduboy_rust/prelude/index.html +++ b/docs/doc/arduboy_rust/prelude/index.html @@ -1,4 +1,4 @@ -arduboy_rust::prelude - Rust

Module arduboy_rust::prelude

source ·
Expand description

This is the important one to use this library effective in your project

+arduboy_rust::prelude - Rust

Module arduboy_rust::prelude

source ·
Expand description

This is the important one to use this library effective in your project

Import the module:

use arduboy_rust::prelude::*;
diff --git a/docs/doc/arduboy_rust/prelude/led/constant.BLUE_LED.html b/docs/doc/arduboy_rust/prelude/led/constant.BLUE_LED.html index e910ed2..523e933 100644 --- a/docs/doc/arduboy_rust/prelude/led/constant.BLUE_LED.html +++ b/docs/doc/arduboy_rust/prelude/led/constant.BLUE_LED.html @@ -1,2 +1,2 @@ -BLUE_LED in arduboy_rust::prelude::led - Rust

Constant arduboy_rust::prelude::led::BLUE_LED

source ·
pub const BLUE_LED: u8 = 9;
Expand description

Just a const for the blue led

+BLUE_LED in arduboy_rust::prelude::led - Rust

Constant arduboy_rust::prelude::led::BLUE_LED

source ·
pub const BLUE_LED: u8 = 9;
Expand description

Just a const for the blue led

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/led/constant.GREEN_LED.html b/docs/doc/arduboy_rust/prelude/led/constant.GREEN_LED.html index 9980d86..70354f4 100644 --- a/docs/doc/arduboy_rust/prelude/led/constant.GREEN_LED.html +++ b/docs/doc/arduboy_rust/prelude/led/constant.GREEN_LED.html @@ -1,2 +1,2 @@ -GREEN_LED in arduboy_rust::prelude::led - Rust
pub const GREEN_LED: u8 = 11;
Expand description

Just a const for the green led

+GREEN_LED in arduboy_rust::prelude::led - Rust
pub const GREEN_LED: u8 = 11;
Expand description

Just a const for the green led

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/led/constant.RED_LED.html b/docs/doc/arduboy_rust/prelude/led/constant.RED_LED.html index b005192..be52787 100644 --- a/docs/doc/arduboy_rust/prelude/led/constant.RED_LED.html +++ b/docs/doc/arduboy_rust/prelude/led/constant.RED_LED.html @@ -1,2 +1,2 @@ -RED_LED in arduboy_rust::prelude::led - Rust

Constant arduboy_rust::prelude::led::RED_LED

source ·
pub const RED_LED: u8 = 10;
Expand description

Just a const for the red led

+RED_LED in arduboy_rust::prelude::led - Rust

Constant arduboy_rust::prelude::led::RED_LED

source ·
pub const RED_LED: u8 = 10;
Expand description

Just a const for the red led

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/led/constant.RGB_OFF.html b/docs/doc/arduboy_rust/prelude/led/constant.RGB_OFF.html index 972e948..2d72cef 100644 --- a/docs/doc/arduboy_rust/prelude/led/constant.RGB_OFF.html +++ b/docs/doc/arduboy_rust/prelude/led/constant.RGB_OFF.html @@ -1,2 +1,2 @@ -RGB_OFF in arduboy_rust::prelude::led - Rust

Constant arduboy_rust::prelude::led::RGB_OFF

source ·
pub const RGB_OFF: u8 = 0;
Expand description

Just a const for led off

+RGB_OFF in arduboy_rust::prelude::led - Rust

Constant arduboy_rust::prelude::led::RGB_OFF

source ·
pub const RGB_OFF: u8 = 0;
Expand description

Just a const for led off

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/led/constant.RGB_ON.html b/docs/doc/arduboy_rust/prelude/led/constant.RGB_ON.html index 0501136..16b5ec5 100644 --- a/docs/doc/arduboy_rust/prelude/led/constant.RGB_ON.html +++ b/docs/doc/arduboy_rust/prelude/led/constant.RGB_ON.html @@ -1,2 +1,2 @@ -RGB_ON in arduboy_rust::prelude::led - Rust

Constant arduboy_rust::prelude::led::RGB_ON

source ·
pub const RGB_ON: u8 = 1;
Expand description

Just a const for led on

+RGB_ON in arduboy_rust::prelude::led - Rust

Constant arduboy_rust::prelude::led::RGB_ON

source ·
pub const RGB_ON: u8 = 1;
Expand description

Just a const for led on

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/led/index.html b/docs/doc/arduboy_rust/prelude/led/index.html index 1f19e93..0ca8ac6 100644 --- a/docs/doc/arduboy_rust/prelude/led/index.html +++ b/docs/doc/arduboy_rust/prelude/led/index.html @@ -1,2 +1,2 @@ -arduboy_rust::prelude::led - Rust

Module arduboy_rust::prelude::led

source ·
Expand description

A list of all LED variables available

+arduboy_rust::prelude::led - Rust

Module arduboy_rust::prelude::led

source ·
Expand description

A list of all LED variables available

Constants

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/macro.f.html b/docs/doc/arduboy_rust/prelude/macro.f.html index d0fec40..2299585 100644 --- a/docs/doc/arduboy_rust/prelude/macro.f.html +++ b/docs/doc/arduboy_rust/prelude/macro.f.html @@ -1,4 +1,4 @@ -f in arduboy_rust::prelude - Rust

Macro arduboy_rust::prelude::f

source ·
macro_rules! f {
+f in arduboy_rust::prelude - Rust

Macro arduboy_rust::prelude::f

source ·
macro_rules! f {
     ($string_literal:literal) => { ... };
 }
Expand description

This is the way to go if you want print some random text

This doesn’t waste the 2kb ram it saves to progmem (28kb) diff --git a/docs/doc/arduboy_rust/prelude/macro.get_sprite_addr.html b/docs/doc/arduboy_rust/prelude/macro.get_sprite_addr.html index b809230..95bd30b 100644 --- a/docs/doc/arduboy_rust/prelude/macro.get_sprite_addr.html +++ b/docs/doc/arduboy_rust/prelude/macro.get_sprite_addr.html @@ -1,4 +1,4 @@ -get_sprite_addr in arduboy_rust::prelude - Rust

macro_rules! get_sprite_addr {
+get_sprite_addr in arduboy_rust::prelude - Rust
macro_rules! get_sprite_addr {
     ( $s:expr ) => { ... };
 }
Expand description

Create a const raw pointer to a sprite as u8, without creating an intermediate reference.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/macro.get_string_addr.html b/docs/doc/arduboy_rust/prelude/macro.get_string_addr.html index f11de46..5b0e89f 100644 --- a/docs/doc/arduboy_rust/prelude/macro.get_string_addr.html +++ b/docs/doc/arduboy_rust/prelude/macro.get_string_addr.html @@ -1,4 +1,4 @@ -get_string_addr in arduboy_rust::prelude - Rust
macro_rules! get_string_addr {
+get_string_addr in arduboy_rust::prelude - Rust
macro_rules! get_string_addr {
     ( $s:expr ) => { ... };
 }
Expand description

Create a const raw pointer to a [u8;_] that saves text, without creating an intermediate reference.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/macro.get_tones_addr.html b/docs/doc/arduboy_rust/prelude/macro.get_tones_addr.html index 699c30a..9d613c3 100644 --- a/docs/doc/arduboy_rust/prelude/macro.get_tones_addr.html +++ b/docs/doc/arduboy_rust/prelude/macro.get_tones_addr.html @@ -1,4 +1,4 @@ -get_tones_addr in arduboy_rust::prelude - Rust
macro_rules! get_tones_addr {
+get_tones_addr in arduboy_rust::prelude - Rust
macro_rules! get_tones_addr {
     ( $s:expr ) => { ... };
 }
Expand description

Create a const raw pointer to a sprite as u16, without creating an intermediate reference.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/macro.progmem.html b/docs/doc/arduboy_rust/prelude/macro.progmem.html index 4ef69fa..54904d3 100644 --- a/docs/doc/arduboy_rust/prelude/macro.progmem.html +++ b/docs/doc/arduboy_rust/prelude/macro.progmem.html @@ -1,4 +1,4 @@ -progmem in arduboy_rust::prelude - Rust
macro_rules! progmem {
+progmem in arduboy_rust::prelude - Rust
macro_rules! progmem {
     (
         $( #[$attr:meta] )*
         $v:vis $id:ident $name:ident: [$ty:ty; _] = $value:expr;
diff --git a/docs/doc/arduboy_rust/prelude/sprites/fn.draw_erase.html b/docs/doc/arduboy_rust/prelude/sprites/fn.draw_erase.html
index d198400..4b731ee 100644
--- a/docs/doc/arduboy_rust/prelude/sprites/fn.draw_erase.html
+++ b/docs/doc/arduboy_rust/prelude/sprites/fn.draw_erase.html
@@ -1,4 +1,4 @@
-draw_erase in arduboy_rust::prelude::sprites - Rust
pub fn draw_erase(x: i16, y: i16, bitmap: *const u8, frame: u8)
Expand description

“Erase” a sprite.

+draw_erase in arduboy_rust::prelude::sprites - Rust
pub fn draw_erase(x: i16, y: i16, bitmap: *const u8, frame: u8)
Expand description

“Erase” a sprite.

Parameters

§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/struct.EEPROM.html b/docs/doc/arduboy_rust/prelude/struct.EEPROM.html index 094b622..f21bb3e 100644 --- a/docs/doc/arduboy_rust/prelude/struct.EEPROM.html +++ b/docs/doc/arduboy_rust/prelude/struct.EEPROM.html @@ -1,4 +1,4 @@ -EEPROM in arduboy_rust::prelude - Rust
pub struct EEPROM { /* private fields */ }
Expand description

This is the struct to store and read structs objects to/from eeprom memory.

+EEPROM in arduboy_rust::prelude - Rust
pub struct EEPROM { /* private fields */ }
Expand description

This is the struct to store and read structs objects to/from eeprom memory.

Example

static e: EEPROM = EEPROM::new(10);
 struct Scorebord {
@@ -21,5 +21,5 @@
 

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/struct.EEPROMBYTE.html b/docs/doc/arduboy_rust/prelude/struct.EEPROMBYTE.html index e1061c2..9c3b6cd 100644 --- a/docs/doc/arduboy_rust/prelude/struct.EEPROMBYTE.html +++ b/docs/doc/arduboy_rust/prelude/struct.EEPROMBYTE.html @@ -1,4 +1,4 @@ -EEPROMBYTE in arduboy_rust::prelude - Rust
pub struct EEPROMBYTE { /* private fields */ }
Expand description

Use this struct to store and read single bytes to/from eeprom memory.

+EEPROMBYTE in arduboy_rust::prelude - Rust
pub struct EEPROMBYTE { /* private fields */ }
Expand description

Use this struct to store and read single bytes to/from eeprom memory.

Implementations§

source§

impl EEPROMBYTE

source

pub const fn new(idx: i16) -> EEPROMBYTE

source

pub fn init(&self)

source

pub fn read(&self) -> u8

source

pub fn update(&self, val: u8)

source

pub fn write(&self, val: u8)

Auto Trait Implementations§

§

impl RefUnwindSafe for EEPROMBYTE

§

impl Send for EEPROMBYTE

§

impl Sync for EEPROMBYTE

§

impl Unpin for EEPROMBYTE

§

impl UnwindSafe for EEPROMBYTE

Blanket Implementations§

§

impl<T> Any for Twhere T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for Twhere T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for Twhere @@ -8,5 +8,5 @@

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/struct.Point.html b/docs/doc/arduboy_rust/prelude/struct.Point.html index 640b613..8db884a 100644 --- a/docs/doc/arduboy_rust/prelude/struct.Point.html +++ b/docs/doc/arduboy_rust/prelude/struct.Point.html @@ -1,4 +1,4 @@ -Point in arduboy_rust::prelude - Rust

Struct arduboy_rust::prelude::Point

source ·
pub struct Point {
+Point in arduboy_rust::prelude - Rust

Struct arduboy_rust::prelude::Point

source ·
pub struct Point {
     pub x: i16,
     pub y: i16,
 }
Expand description

This struct is used by a few Arduboy functions.

@@ -13,5 +13,5 @@

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/struct.Rect.html b/docs/doc/arduboy_rust/prelude/struct.Rect.html index a8329a5..e72e693 100644 --- a/docs/doc/arduboy_rust/prelude/struct.Rect.html +++ b/docs/doc/arduboy_rust/prelude/struct.Rect.html @@ -1,4 +1,4 @@ -Rect in arduboy_rust::prelude - Rust

Struct arduboy_rust::prelude::Rect

source ·
pub struct Rect {
+Rect in arduboy_rust::prelude - Rust

Struct arduboy_rust::prelude::Rect

source ·
pub struct Rect {
     pub x: i16,
     pub y: i16,
     pub width: u8,
@@ -17,5 +17,5 @@
 

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/trait.Printable.html b/docs/doc/arduboy_rust/prelude/trait.Printable.html index 38e0638..67ff505 100644 --- a/docs/doc/arduboy_rust/prelude/trait.Printable.html +++ b/docs/doc/arduboy_rust/prelude/trait.Printable.html @@ -1,4 +1,4 @@ -Printable in arduboy_rust::prelude - Rust
pub trait Printablewhere
+Printable in arduboy_rust::prelude - Rust
pub trait Printablewhere
     Self: Sized,{
     type Parameters;
 
@@ -8,4 +8,4 @@
 
     // Provided method
     fn print(self) { ... }
-}

Required Associated Types§

Required Methods§

source

fn print_2(self, params: Self::Parameters)

source

fn default_parameters() -> Self::Parameters

Provided Methods§

source

fn print(self)

Implementations on Foreign Types§

source§

impl Printable for i32

source§

impl Printable for &[u8]

§

type Parameters = ()

source§

fn print_2(self, _params: Self::Parameters)

source§

fn default_parameters() -> Self::Parameters

source§

impl Printable for u32

source§

impl Printable for i16

source§

impl Printable for &str

§

type Parameters = ()

source§

fn print_2(self, _params: Self::Parameters)

source§

fn default_parameters() -> Self::Parameters

source§

impl Printable for u16

Implementors§

\ No newline at end of file +}

Required Associated Types§

Required Methods§

source

fn print_2(self, params: Self::Parameters)

source

fn default_parameters() -> Self::Parameters

Provided Methods§

source

fn print(self)

Implementations on Foreign Types§

source§

impl Printable for i16

source§

impl Printable for &[u8]

§

type Parameters = ()

source§

fn print_2(self, _params: Self::Parameters)

source§

fn default_parameters() -> Self::Parameters

source§

impl Printable for u32

source§

impl Printable for &str

§

type Parameters = ()

source§

fn print_2(self, _params: Self::Parameters)

source§

fn default_parameters() -> Self::Parameters

source§

impl Printable for u16

source§

impl Printable for i32

Implementors§

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/type.c_char.html b/docs/doc/arduboy_rust/prelude/type.c_char.html index 6ed82e5..3989450 100644 --- a/docs/doc/arduboy_rust/prelude/type.c_char.html +++ b/docs/doc/arduboy_rust/prelude/type.c_char.html @@ -1,4 +1,4 @@ -c_char in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_char

1.64.0 ·
pub type c_char = i8;
Expand description

Equivalent to C’s char type.

+c_char in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_char

1.64.0 ·
pub type c_char = i8;
Expand description

Equivalent to C’s char type.

C’s char type is completely unlike Rust’s char type; while Rust’s type represents a unicode scalar value, C’s char type is just an ordinary integer. On modern architectures this type will always be either [i8] or [u8], as they use byte-addresses memory with 8-bit bytes.

C chars are most commonly used to make C strings. Unlike Rust, where the length of a string is included alongside the string, C strings mark the end of a string with the character '\0'. See CStr for more information.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/type.c_double.html b/docs/doc/arduboy_rust/prelude/type.c_double.html index aa9e7d3..16fcdab 100644 --- a/docs/doc/arduboy_rust/prelude/type.c_double.html +++ b/docs/doc/arduboy_rust/prelude/type.c_double.html @@ -1,3 +1,3 @@ -c_double in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_double

1.64.0 ·
pub type c_double = f64;
Expand description

Equivalent to C’s double type.

+c_double in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_double

1.64.0 ·
pub type c_double = f64;
Expand description

Equivalent to C’s double type.

This type will almost always be [f64], which is guaranteed to be an IEEE 754 double-precision float in Rust. That said, the standard technically only guarantees that it be a floating-point number with at least the precision of a float, and it may be f32 or something entirely different from the IEEE-754 standard.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/type.c_float.html b/docs/doc/arduboy_rust/prelude/type.c_float.html index ac8726c..15ff6c4 100644 --- a/docs/doc/arduboy_rust/prelude/type.c_float.html +++ b/docs/doc/arduboy_rust/prelude/type.c_float.html @@ -1,3 +1,3 @@ -c_float in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_float

1.64.0 ·
pub type c_float = f32;
Expand description

Equivalent to C’s float type.

+c_float in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_float

1.64.0 ·
pub type c_float = f32;
Expand description

Equivalent to C’s float type.

This type will almost always be [f32], which is guaranteed to be an IEEE 754 single-precision float in Rust. That said, the standard technically only guarantees that it be a floating-point number, and it may have less precision than f32 or not follow the IEEE-754 standard at all.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/type.c_int.html b/docs/doc/arduboy_rust/prelude/type.c_int.html index db43cfa..7840d50 100644 --- a/docs/doc/arduboy_rust/prelude/type.c_int.html +++ b/docs/doc/arduboy_rust/prelude/type.c_int.html @@ -1,3 +1,3 @@ -c_int in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_int

1.64.0 ·
pub type c_int = i16;
Expand description

Equivalent to C’s signed int (int) type.

+c_int in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_int

1.64.0 ·
pub type c_int = i16;
Expand description

Equivalent to C’s signed int (int) type.

This type will almost always be [i32], but may differ on some esoteric systems. The C standard technically only requires that this type be a signed integer that is at least the size of a short; some systems define it as an [i16], for example.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/type.c_long.html b/docs/doc/arduboy_rust/prelude/type.c_long.html index 879a2c4..acd4706 100644 --- a/docs/doc/arduboy_rust/prelude/type.c_long.html +++ b/docs/doc/arduboy_rust/prelude/type.c_long.html @@ -1,3 +1,3 @@ -c_long in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_long

1.64.0 ·
pub type c_long = i32;
Expand description

Equivalent to C’s signed long (long) type.

+c_long in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_long

1.64.0 ·
pub type c_long = i32;
Expand description

Equivalent to C’s signed long (long) type.

This type will always be [i32] or [i64]. Most notably, many Linux-based systems assume an i64, but Windows assumes i32. The C standard technically only requires that this type be a signed integer that is at least 32 bits and at least the size of an int, although in practice, no system would have a long that is neither an i32 nor i64.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/type.c_longlong.html b/docs/doc/arduboy_rust/prelude/type.c_longlong.html index 239fe69..36363c3 100644 --- a/docs/doc/arduboy_rust/prelude/type.c_longlong.html +++ b/docs/doc/arduboy_rust/prelude/type.c_longlong.html @@ -1,3 +1,3 @@ -c_longlong in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_longlong

1.64.0 ·
pub type c_longlong = i64;
Expand description

Equivalent to C’s signed long long (long long) type.

+c_longlong in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_longlong

1.64.0 ·
pub type c_longlong = i64;
Expand description

Equivalent to C’s signed long long (long long) type.

This type will almost always be [i64], but may differ on some systems. The C standard technically only requires that this type be a signed integer that is at least 64 bits and at least the size of a long, although in practice, no system would have a long long that is not an i64, as most systems do not have a standardised [i128] type.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/type.c_size_t.html b/docs/doc/arduboy_rust/prelude/type.c_size_t.html index fa0b4b7..141eca2 100644 --- a/docs/doc/arduboy_rust/prelude/type.c_size_t.html +++ b/docs/doc/arduboy_rust/prelude/type.c_size_t.html @@ -1,4 +1,4 @@ -c_size_t in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_size_t

pub type c_size_t = usize;
🔬This is a nightly-only experimental API. (c_size_t)
Expand description

Equivalent to C’s size_t type, from stddef.h (or cstddef for C++).

+c_size_t in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_size_t

pub type c_size_t = usize;
🔬This is a nightly-only experimental API. (c_size_t)
Expand description

Equivalent to C’s size_t type, from stddef.h (or cstddef for C++).

This type is currently always [usize], however in the future there may be platforms where this is not the case.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/type.c_uchar.html b/docs/doc/arduboy_rust/prelude/type.c_uchar.html index 7dc711a..f7a1d65 100644 --- a/docs/doc/arduboy_rust/prelude/type.c_uchar.html +++ b/docs/doc/arduboy_rust/prelude/type.c_uchar.html @@ -1,3 +1,3 @@ -c_uchar in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_uchar

1.64.0 ·
pub type c_uchar = u8;
Expand description

Equivalent to C’s unsigned char type.

+c_uchar in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_uchar

1.64.0 ·
pub type c_uchar = u8;
Expand description

Equivalent to C’s unsigned char type.

This type will always be [u8], but is included for completeness. It is defined as being an unsigned integer the same size as a C char.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/type.c_uint.html b/docs/doc/arduboy_rust/prelude/type.c_uint.html index e68a1b1..415ef07 100644 --- a/docs/doc/arduboy_rust/prelude/type.c_uint.html +++ b/docs/doc/arduboy_rust/prelude/type.c_uint.html @@ -1,3 +1,3 @@ -c_uint in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_uint

1.64.0 ·
pub type c_uint = u16;
Expand description

Equivalent to C’s unsigned int type.

+c_uint in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_uint

1.64.0 ·
pub type c_uint = u16;
Expand description

Equivalent to C’s unsigned int type.

This type will almost always be [u32], but may differ on some esoteric systems. The C standard technically only requires that this type be an unsigned integer with the same size as an int; some systems define it as a [u16], for example.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/type.c_ulong.html b/docs/doc/arduboy_rust/prelude/type.c_ulong.html index bc66954..783211f 100644 --- a/docs/doc/arduboy_rust/prelude/type.c_ulong.html +++ b/docs/doc/arduboy_rust/prelude/type.c_ulong.html @@ -1,3 +1,3 @@ -c_ulong in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_ulong

1.64.0 ·
pub type c_ulong = u32;
Expand description

Equivalent to C’s unsigned long type.

+c_ulong in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_ulong

1.64.0 ·
pub type c_ulong = u32;
Expand description

Equivalent to C’s unsigned long type.

This type will always be [u32] or [u64]. Most notably, many Linux-based systems assume an u64, but Windows assumes u32. The C standard technically only requires that this type be an unsigned integer with the size of a long, although in practice, no system would have a ulong that is neither a u32 nor u64.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/prelude/type.c_ulonglong.html b/docs/doc/arduboy_rust/prelude/type.c_ulonglong.html index 0745930..7260b37 100644 --- a/docs/doc/arduboy_rust/prelude/type.c_ulonglong.html +++ b/docs/doc/arduboy_rust/prelude/type.c_ulonglong.html @@ -1,3 +1,3 @@ -c_ulonglong in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_ulonglong

1.64.0 ·
pub type c_ulonglong = u64;
Expand description

Equivalent to C’s unsigned long long type.

+c_ulonglong in arduboy_rust::prelude - Rust

Type Definition arduboy_rust::prelude::c_ulonglong

1.64.0 ·
pub type c_ulonglong = u64;
Expand description

Equivalent to C’s unsigned long long type.

This type will almost always be [u64], but may differ on some systems. The C standard technically only requires that this type be an unsigned integer with the size of a long long, although in practice, no system would have a long long that is not a u64, as most systems do not have a standardised [u128] type.

\ No newline at end of file diff --git a/docs/doc/arduboy_rust/sprites/fn.draw_erase.html b/docs/doc/arduboy_rust/sprites/fn.draw_erase.html index bf905fa..4f2ac27 100644 --- a/docs/doc/arduboy_rust/sprites/fn.draw_erase.html +++ b/docs/doc/arduboy_rust/sprites/fn.draw_erase.html @@ -1,4 +1,4 @@ -draw_erase in arduboy_rust::sprites - Rust
pub fn draw_erase(x: i16, y: i16, bitmap: *const u8, frame: u8)
Expand description

“Erase” a sprite.

+draw_erase in arduboy_rust::sprites - Rust
pub fn draw_erase(x: i16, y: i16, bitmap: *const u8, frame: u8)
Expand description

“Erase” a sprite.

Parameters

§

impl<T, U> TryFrom<U> for Twhere - U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere - U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file + U: Into<T>,
§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for Twhere + U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
\ No newline at end of file diff --git a/docs/doc/help.html b/docs/doc/help.html index ad3b5a1..73f11a1 100644 --- a/docs/doc/help.html +++ b/docs/doc/help.html @@ -1 +1 @@ -Rustdoc help

Rustdoc help

Back
\ No newline at end of file +Rustdoc help

Rustdoc help

Back
\ No newline at end of file diff --git a/docs/doc/implementors/core/cmp/trait.Eq.js b/docs/doc/implementors/core/cmp/trait.Eq.js index 0909dd2..541d599 100644 --- a/docs/doc/implementors/core/cmp/trait.Eq.js +++ b/docs/doc/implementors/core/cmp/trait.Eq.js @@ -1,3 +1,3 @@ (function() {var implementors = { -"arduboy_rust":[["impl Eq for Color"],["impl Eq for ButtonSet"],["impl Eq for Base"]] +"arduboy_rust":[["impl Eq for Base"],["impl Eq for ButtonSet"],["impl Eq for Color"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/docs/doc/implementors/core/cmp/trait.Ord.js b/docs/doc/implementors/core/cmp/trait.Ord.js index 5cf30f1..806e9c8 100644 --- a/docs/doc/implementors/core/cmp/trait.Ord.js +++ b/docs/doc/implementors/core/cmp/trait.Ord.js @@ -1,3 +1,3 @@ (function() {var implementors = { -"arduboy_rust":[["impl Ord for Base"],["impl Ord for Color"],["impl Ord for ButtonSet"]] +"arduboy_rust":[["impl Ord for Base"],["impl Ord for ButtonSet"],["impl Ord for Color"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/docs/doc/implementors/core/cmp/trait.PartialEq.js b/docs/doc/implementors/core/cmp/trait.PartialEq.js index 8a09469..684e13b 100644 --- a/docs/doc/implementors/core/cmp/trait.PartialEq.js +++ b/docs/doc/implementors/core/cmp/trait.PartialEq.js @@ -1,3 +1,3 @@ (function() {var implementors = { -"arduboy_rust":[["impl PartialEq<ButtonSet> for ButtonSet"],["impl PartialEq<Color> for Color"],["impl PartialEq<Base> for Base"]] +"arduboy_rust":[["impl PartialEq<Base> for Base"],["impl PartialEq<ButtonSet> for ButtonSet"],["impl PartialEq<Color> for Color"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/docs/doc/implementors/core/cmp/trait.PartialOrd.js b/docs/doc/implementors/core/cmp/trait.PartialOrd.js index 7939e8c..94d56bc 100644 --- a/docs/doc/implementors/core/cmp/trait.PartialOrd.js +++ b/docs/doc/implementors/core/cmp/trait.PartialOrd.js @@ -1,3 +1,3 @@ (function() {var implementors = { -"arduboy_rust":[["impl PartialOrd<ButtonSet> for ButtonSet"],["impl PartialOrd<Color> for Color"],["impl PartialOrd<Base> for Base"]] +"arduboy_rust":[["impl PartialOrd<Base> for Base"],["impl PartialOrd<Color> for Color"],["impl PartialOrd<ButtonSet> for ButtonSet"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/docs/doc/implementors/core/fmt/trait.Debug.js b/docs/doc/implementors/core/fmt/trait.Debug.js index 6403405..92316f0 100644 --- a/docs/doc/implementors/core/fmt/trait.Debug.js +++ b/docs/doc/implementors/core/fmt/trait.Debug.js @@ -1,3 +1,3 @@ (function() {var implementors = { -"arduboy_rust":[["impl Debug for Color"],["impl Debug for ButtonSet"],["impl Debug for Base"]] +"arduboy_rust":[["impl Debug for Base"],["impl Debug for Color"],["impl Debug for ButtonSet"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/docs/doc/implementors/core/hash/trait.Hash.js b/docs/doc/implementors/core/hash/trait.Hash.js index b078cbb..70ecadf 100644 --- a/docs/doc/implementors/core/hash/trait.Hash.js +++ b/docs/doc/implementors/core/hash/trait.Hash.js @@ -1,3 +1,3 @@ (function() {var implementors = { -"arduboy_rust":[["impl Hash for Base"],["impl Hash for Color"],["impl Hash for ButtonSet"]] +"arduboy_rust":[["impl Hash for Base"],["impl Hash for ButtonSet"],["impl Hash for Color"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/docs/doc/implementors/core/marker/trait.Copy.js b/docs/doc/implementors/core/marker/trait.Copy.js index a7e664d..423ebea 100644 --- a/docs/doc/implementors/core/marker/trait.Copy.js +++ b/docs/doc/implementors/core/marker/trait.Copy.js @@ -1,3 +1,3 @@ (function() {var implementors = { -"arduboy_rust":[["impl Copy for Base"],["impl Copy for Color"],["impl Copy for ButtonSet"]] +"arduboy_rust":[["impl Copy for ButtonSet"],["impl Copy for Color"],["impl Copy for Base"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/docs/doc/implementors/core/marker/trait.StructuralPartialEq.js b/docs/doc/implementors/core/marker/trait.StructuralPartialEq.js index 73563b2..792b501 100644 --- a/docs/doc/implementors/core/marker/trait.StructuralPartialEq.js +++ b/docs/doc/implementors/core/marker/trait.StructuralPartialEq.js @@ -1,3 +1,3 @@ (function() {var implementors = { -"arduboy_rust":[["impl StructuralPartialEq for Color"],["impl StructuralPartialEq for Base"],["impl StructuralPartialEq for ButtonSet"]] +"arduboy_rust":[["impl StructuralPartialEq for Base"],["impl StructuralPartialEq for Color"],["impl StructuralPartialEq for ButtonSet"]] };if (window.register_implementors) {window.register_implementors(implementors);} else {window.pending_implementors = implementors;}})() \ No newline at end of file diff --git a/docs/doc/panic_halt/all.html b/docs/doc/panic_halt/all.html index c287a54..b5c2cc9 100644 --- a/docs/doc/panic_halt/all.html +++ b/docs/doc/panic_halt/all.html @@ -1 +1 @@ -List of all items in this crate

List of all items

\ No newline at end of file +List of all items in this crate

List of all items

\ No newline at end of file diff --git a/docs/doc/panic_halt/index.html b/docs/doc/panic_halt/index.html index 496aaa0..efcae66 100644 --- a/docs/doc/panic_halt/index.html +++ b/docs/doc/panic_halt/index.html @@ -1,4 +1,4 @@ -panic_halt - Rust

Crate panic_halt

source ·
Expand description

Set the panicking behavior to halt

+panic_halt - Rust

Crate panic_halt

source ·
Expand description

Set the panicking behavior to halt

This crate contains an implementation of panic_fmt that simply halt in an infinite loop.

Usage

#![no_std]
diff --git a/docs/doc/settings.html b/docs/doc/settings.html
index 18d1924..e5897e5 100644
--- a/docs/doc/settings.html
+++ b/docs/doc/settings.html
@@ -1 +1 @@
-Rustdoc settings

Rustdoc settings

Back
\ No newline at end of file +Rustdoc settings

Rustdoc settings

Back
\ No newline at end of file diff --git a/docs/doc/src/arduboy_rust/hardware/buttons.rs.html b/docs/doc/src/arduboy_rust/hardware/buttons.rs.html index 0583ac3..8c92f73 100644 --- a/docs/doc/src/arduboy_rust/hardware/buttons.rs.html +++ b/docs/doc/src/arduboy_rust/hardware/buttons.rs.html @@ -1,4 +1,4 @@ -buttons.rs - source
1
+buttons.rs - source
1
 2
 3
 4
diff --git a/docs/doc/src/arduboy_rust/hardware/led.rs.html b/docs/doc/src/arduboy_rust/hardware/led.rs.html
index a0c2382..b24550e 100644
--- a/docs/doc/src/arduboy_rust/hardware/led.rs.html
+++ b/docs/doc/src/arduboy_rust/hardware/led.rs.html
@@ -1,4 +1,4 @@
-led.rs - source
1
+led.rs - source
1
 2
 3
 4
diff --git a/docs/doc/src/arduboy_rust/hardware/mod.rs.html b/docs/doc/src/arduboy_rust/hardware/mod.rs.html
index 8690ab7..f0de6b4 100644
--- a/docs/doc/src/arduboy_rust/hardware/mod.rs.html
+++ b/docs/doc/src/arduboy_rust/hardware/mod.rs.html
@@ -1,4 +1,4 @@
-mod.rs - source
1
+mod.rs - source
1
 2
 3
 
//! This is the Module to interact in a save way with the Arduboy hardware.
diff --git a/docs/doc/src/arduboy_rust/lib.rs.html b/docs/doc/src/arduboy_rust/lib.rs.html
index 19224b0..dc742d4 100644
--- a/docs/doc/src/arduboy_rust/lib.rs.html
+++ b/docs/doc/src/arduboy_rust/lib.rs.html
@@ -1,4 +1,4 @@
-lib.rs - source
1
+lib.rs - source
1
 2
 3
 4
diff --git a/docs/doc/src/arduboy_rust/library/arduboy.rs.html b/docs/doc/src/arduboy_rust/library/arduboy.rs.html
new file mode 100644
index 0000000..cf8b1b3
--- /dev/null
+++ b/docs/doc/src/arduboy_rust/library/arduboy.rs.html
@@ -0,0 +1,1021 @@
+arduboy.rs - source
1
+2
+3
+4
+5
+6
+7
+8
+9
+10
+11
+12
+13
+14
+15
+16
+17
+18
+19
+20
+21
+22
+23
+24
+25
+26
+27
+28
+29
+30
+31
+32
+33
+34
+35
+36
+37
+38
+39
+40
+41
+42
+43
+44
+45
+46
+47
+48
+49
+50
+51
+52
+53
+54
+55
+56
+57
+58
+59
+60
+61
+62
+63
+64
+65
+66
+67
+68
+69
+70
+71
+72
+73
+74
+75
+76
+77
+78
+79
+80
+81
+82
+83
+84
+85
+86
+87
+88
+89
+90
+91
+92
+93
+94
+95
+96
+97
+98
+99
+100
+101
+102
+103
+104
+105
+106
+107
+108
+109
+110
+111
+112
+113
+114
+115
+116
+117
+118
+119
+120
+121
+122
+123
+124
+125
+126
+127
+128
+129
+130
+131
+132
+133
+134
+135
+136
+137
+138
+139
+140
+141
+142
+143
+144
+145
+146
+147
+148
+149
+150
+151
+152
+153
+154
+155
+156
+157
+158
+159
+160
+161
+162
+163
+164
+165
+166
+167
+168
+169
+170
+171
+172
+173
+174
+175
+176
+177
+178
+179
+180
+181
+182
+183
+184
+185
+186
+187
+188
+189
+190
+191
+192
+193
+194
+195
+196
+197
+198
+199
+200
+201
+202
+203
+204
+205
+206
+207
+208
+209
+210
+211
+212
+213
+214
+215
+216
+217
+218
+219
+220
+221
+222
+223
+224
+225
+226
+227
+228
+229
+230
+231
+232
+233
+234
+235
+236
+237
+238
+239
+240
+241
+242
+243
+244
+245
+246
+247
+248
+249
+250
+251
+252
+253
+254
+255
+256
+257
+258
+259
+260
+261
+262
+263
+264
+265
+266
+267
+268
+269
+270
+271
+272
+273
+274
+275
+276
+277
+278
+279
+280
+281
+282
+283
+284
+285
+286
+287
+288
+289
+290
+291
+292
+293
+294
+295
+296
+297
+298
+299
+300
+301
+302
+303
+304
+305
+306
+307
+308
+309
+310
+311
+312
+313
+314
+315
+316
+317
+318
+319
+320
+321
+322
+323
+324
+325
+326
+327
+328
+329
+330
+331
+332
+333
+334
+335
+336
+337
+338
+339
+340
+341
+342
+343
+344
+345
+346
+347
+348
+349
+350
+351
+352
+353
+354
+355
+356
+357
+358
+359
+360
+361
+362
+363
+364
+365
+366
+367
+368
+369
+370
+371
+372
+373
+374
+375
+376
+377
+378
+379
+380
+381
+382
+383
+384
+385
+386
+387
+388
+389
+390
+391
+392
+393
+394
+395
+396
+397
+398
+399
+400
+401
+402
+403
+404
+405
+406
+407
+408
+409
+410
+411
+412
+413
+414
+415
+416
+417
+418
+419
+420
+421
+422
+423
+424
+425
+426
+427
+428
+429
+430
+431
+432
+433
+434
+435
+436
+437
+438
+439
+440
+441
+442
+443
+444
+445
+446
+447
+448
+449
+450
+451
+452
+453
+454
+455
+456
+457
+458
+459
+460
+461
+462
+463
+464
+465
+466
+467
+468
+469
+470
+471
+472
+473
+474
+475
+476
+477
+478
+479
+480
+481
+482
+483
+484
+485
+486
+487
+488
+489
+490
+491
+492
+493
+494
+495
+496
+497
+498
+499
+500
+501
+502
+503
+504
+505
+506
+507
+508
+509
+510
+
//! This is the Module to interact in a save way with the Arduboy2 C++ library.
+//!
+//! Ignore the functions here you only need to import the prelude here you will find all sorts of unsafe functions
+//! All of them are safe wrapped inside the struct.
+#![allow(dead_code)]
+use crate::prelude::ButtonSet;
+use crate::print::Printable;
+use core::ffi::{c_char, c_int, c_long, c_size_t, c_uchar, c_uint, c_ulong};
+use core::mem;
+use core::ops::Not;
+/// The standard font size of the arduboy
+///
+/// this is to calculate with it.
+pub const FONT_SIZE: u8 = 6;
+/// The standard width of the arduboy
+///
+/// this is to calculate with it.
+pub const WIDTH: u8 = 128;
+/// The standard height of the arduboy
+///
+/// this is to calculate with it.
+pub const HEIGHT: u8 = 64;
+
+/// This item is to chose between Black or White
+#[derive(Debug, Copy, Clone, Hash, Eq, PartialEq, Ord, PartialOrd)]
+#[repr(u8)]
+pub enum Color {
+    /// Led is off
+    Black,
+    /// Led is on
+    White,
+}
+impl Not for Color {
+    type Output = Self;
+
+    fn not(self) -> Self::Output {
+        match self {
+            Color::Black => Color::White,
+            Color::White => Color::Black,
+        }
+    }
+}
+/// This struct is used by a few Arduboy functions.
+pub struct Rect {
+    /// Position X
+    pub x: i16,
+    /// Position Y
+    pub y: i16,
+    /// Rect width
+    pub width: u8,
+    /// Rect height
+    pub height: u8,
+}
+/// This struct is used by a few Arduboy functions.
+pub struct Point {
+    /// Position X
+    pub x: i16,
+    /// Position Y
+    pub y: i16,
+}
+
+/// This is the struct to interact in a save way with the Arduboy2 C++ library.
+pub struct Arduboy {}
+impl Arduboy {
+    pub fn new() -> Self {
+        Arduboy {}
+    }
+    /// Initialize the hardware, display the boot logo, provide boot utilities, etc.
+    /// This function should be called once near the start of the sketch, usually in setup(), before using any other functions in this class. It initializes the display, displays the boot logo, provides "flashlight" and system control features and initializes audio control.
+    pub fn begin(&self) {
+        unsafe { begin() }
+    }
+    /// Clear the display buffer and set the text cursor to location 0, 0.
+    pub fn clear(&self) {
+        unsafe { clear() }
+    }
+    /// Copy the contents of the display buffer to the display.
+    /// The contents of the display buffer in RAM are copied to the display and will appear on the screen.
+    pub fn display(&self) {
+        unsafe { display() }
+    }
+    ///Copy the contents of the display buffer to the display. The display buffer will be cleared to zero.
+    ///
+    ///Operation is the same as calling display() without parameters except additionally the display buffer will be cleared.
+    pub fn display_and_clear_buffer(&self) {
+        unsafe { display_and_clear_buffer() }
+    }
+    ///Draw a horizontal line.
+    ///
+    ///### Parameters:
+    ///
+    ///x	The X coordinate of the left start point.
+    ///
+    ///y	The Y coordinate of the left start point.
+    ///
+    ///w	The width of the line.
+    ///
+    ///color	The color of the line (optional; defaults to WHITE).
+    pub fn draw_fast_hline(&self, x: i16, y: i16, w: u8, color: Color) {
+        unsafe { draw_fast_hline_raw(x, y, w, color as u8) }
+    }
+    ///Draw a vertical line.
+    ///
+    ///### Parameters:
+    ///
+    ///x	The X coordinate of the left start point.
+    ///
+    ///y	The Y coordinate of the left start point.
+    ///
+    ///h	The height of the line.
+    ///
+    ///color	The color of the line (optional; defaults to WHITE).
+    pub fn draw_fast_vline(&self, x: i16, y: i16, h: u8, color: Color) {
+        unsafe { draw_fast_vline_raw(x, y, h, color as u8) }
+    }
+    ///Set a single pixel in the display buffer to the specified color.
+    ///
+    ///### Parameters
+    ///
+    ///x	The X coordinate of the pixel.
+    ///
+    ///y	The Y coordinate of the pixel.
+    ///
+    ///color	The color of the pixel (optional; defaults to WHITE).
+    ///
+    ///The single pixel specified location in the display buffer is set to the specified color. The values WHITE or BLACK can be used for the color. If the color parameter isn't included, the pixel will be set to WHITE.
+    pub fn draw_pixel(&self, x: i16, y: i16, color: Color) {
+        unsafe { draw_pixel_raw(x, y, color as u8) }
+    }
+    ///Draw a filled-in rectangle of a specified width and height.
+    ///
+    ///### Parameters
+    ///
+    ///x	The X coordinate of the upper left corner.
+    ///
+    ///y	The Y coordinate of the upper left corner.
+    ///
+    ///w	The width of the rectangle.
+    ///
+    ///h	The height of the rectangle.
+    ///
+    ///color	The color of the pixel (optional; defaults to WHITE).
+    pub fn fill_rect(&self, x: i16, y: i16, w: u8, h: u8, color: Color) {
+        unsafe { fill_rect_raw(x, y, w, h, color as u8) }
+    }
+    pub fn draw_rect(&self, x: i16, y: i16, w: u8, h: u8, color: Color) {
+        unsafe { draw_rect_raw(x, y, w, h, color as u8) }
+    }
+    pub fn draw_circle(&self, x: i16, y: i16, r: u8, color: Color) {
+        unsafe { draw_circle_raw(x, y, r, color as u8) }
+    }
+    ///Draw a filled-in circle of a given radius.
+    ///
+    ///### Parameters
+    ///
+    ///x0	The X coordinate of the circle's center.
+    ///
+    ///y0	The Y coordinate of the circle's center.
+    ///
+    ///r	The radius of the circle in pixels.
+    ///
+    ///color	The circle's color (optional; defaults to WHITE).
+    pub fn fill_circle(&self, x: i16, y: i16, r: u8, color: Color) {
+        unsafe { fill_circle_raw(x, y, r, color as u8) }
+    }
+    ///Returns the state of the given pixel in the screen buffer.
+    ///
+    ///### Parameters
+    ///x	The X coordinate of the pixel.
+    ///
+    ///y	The Y coordinate of the pixel.
+    ///
+    ///### Returns
+    ///WHITE if the pixel is on or BLACK if the pixel is off.
+    pub fn get_pixel(&self, x: u8, y: u8) -> Color {
+        unsafe { mem::transmute::<u8, Color>(get_pixel_raw(x, y)) }
+    }
+    /// Seed the random number generator with a random value.
+    ///
+    /// The Arduino pseudorandom number generator is seeded with the random value returned from a call to generateRandomSeed().
+    pub fn init_random_seed(&self) {
+        unsafe { init_random_seed() }
+    }
+    ///Check if a button has just been pressed.
+    ///
+    ///### Parameters
+    ///button	The button to test for. Only one button should be specified.
+    ///
+    ///### Returns
+    ///true if the specified button has just been pressed.
+    ///
+    ///Return true if the given button was pressed between the latest call to pollButtons() and previous call to pollButtons(). If the button has been held down over multiple polls, this function will return false.
+    ///
+    ///There is no need to check for the release of the button since it must have been released for this function to return true when pressed again.
+    ///
+    ///This function should only be used to test a single button.
+    pub fn just_pressed(&self, button: ButtonSet) -> bool {
+        unsafe { just_pressed(button.flag_set) }
+    }
+    ///Check if a button has just been released.
+    ///
+    ///### Parameters
+    ///button	The button to test for. Only one button should be specified.
+    ///
+    ///### Returns
+    ///true if the specified button has just been released.
+    ///
+    ///Return true if the given button was released between the latest call to pollButtons() and previous call to pollButtons(). If the button has been held down over multiple polls, this function will return false.
+    ///
+    ///There is no need to check for the released of the button since it must have been pressed for this function to return true when pressed again.
+    ///
+    ///This function should only be used to test a single button.
+    pub fn just_released(&self, button: ButtonSet) -> bool {
+        unsafe { just_released(button.flag_set) }
+    }
+    ///Test if the specified buttons are not pressed.
+    ///
+    ///### Parameters
+    ///
+    ///buttons	A bit mask indicating which buttons to test. (Can be a single button)
+    ///
+    ///### Returns
+    ///
+    /// True if all buttons in the provided mask are currently released.
+    ///
+    ///Read the state of the buttons and return true if all the buttons in the specified mask are currently released.
+    pub fn not_pressed(&self, button: ButtonSet) -> bool {
+        unsafe { not_pressed(button.flag_set) }
+    }
+    ///Indicate that it's time to render the next frame.
+    ///
+    ///### Returns
+    ///true if it's time for the next frame.
+    ///
+    ///When this function returns true, the amount of time has elapsed to display the next frame, as specified by setFrameRate() or setFrameDuration().
+    ///
+    ///This function will normally be called at the start of the rendering loop which would wait for true to be returned before rendering and displaying the next frame.
+    pub fn next_frame(&self) -> bool {
+        unsafe { next_frame() }
+    }
+    ///Poll the buttons and track their state over time.
+    ///
+    ///Read and save the current state of the buttons and also keep track of the button state when this function was previously called. These states are used by the justPressed() and justReleased() functions to determine if a button has changed state between now and the previous call to pollButtons().
+    ///
+    ///This function should be called once at the start of each new frame.
+    ///
+    ///The justPressed() and justReleased() functions rely on this function.
+    pub fn poll_buttons(&self) {
+        unsafe { poll_buttons() }
+    }
+    ///Test if the all of the specified buttons are pressed.
+    ///
+    ///### Parameters
+    ///   buttons	A bit mask indicating which buttons to test. (Can be a single button)
+    ///
+    ///### Returns
+    ///   true if all buttons in the provided mask are currently pressed.
+    ///
+    ///Read the state of the buttons and return true if all of the buttons in the specified mask are being pressed.
+    pub fn pressed(&self, button: ButtonSet) -> bool {
+        unsafe { pressed(button.flag_set) }
+    }
+    ///The Arduino Print class is available for writing text to the screen buffer.
+    ///
+    ///For an Arduboy2 class object, functions provided by the Arduino Print class can be used to write text to the screen buffer, in the same manner as the Arduino Serial.print(), etc., functions.
+    ///
+    ///Print will use the write() function to actually draw each character in the screen buffer, using the library's font5x7 font. Two character values are handled specially:
+    ///
+    ///- ASCII newline/line feed (\n, 0x0A, inverse white circle). This will move the text cursor position to the start of the next line, based on the current text size.
+    ///- ASCII carriage return (\r, 0x0D, musical eighth note). This character will be ignored.
+    ///
+    ///
+    ///Example
+    /// ```text
+    /// let value:i16 = 42;
+    ///
+    /// arduboy.println("Hello World\0"); // Prints "Hello World" and then sets the
+    ///                                   // text cursor to the start of the next line
+    /// arduboy.print(value);             // Prints "42"
+    /// arduboy.print('\n\0');            // Sets the text cursor to the start of the next line
+    /// arduboy.print(78, HEX);           // Prints "4E" (78 in hexadecimal)
+    /// arduboy.print("\x03\xEA");        // Prints a heart symbol and a Greek uppercase omega
+    /// ```
+    pub fn print(&self, x: impl Printable) {
+        x.print()
+    }
+    ///Set the location of the text cursor.
+    ///
+    ///### Parameters
+    ///   x	The X (horizontal) coordinate, in pixels, for the new location of the text cursor.
+    ///
+    ///   y	The Y (vertical) coordinate, in pixels, for the new location of the text cursor.
+    ///
+    ///The location of the text cursor is set the the specified coordinates. The coordinates are in pixels. Since the coordinates can specify any pixel location, the text does not have to be placed on specific rows. As with all drawing functions, location 0, 0 is the top left corner of the display. The cursor location represents the top left corner of the next character written.
+    pub fn set_cursor(&self, x: i16, y: i16) {
+        unsafe { set_cursor(x, y) }
+    }
+    ///Set the frame rate used by the frame control functions.
+    ///
+    ///### Parameters
+    ///   rate	The desired frame rate in frames per second.
+    ///
+    ///Normally, the frame rate would be set to the desired value once, at the start of the game, but it can be changed at any time to alter the frame update rate.
+    pub fn set_frame_rate(&self, rate: u8) {
+        unsafe { set_frame_rate(rate) }
+    }
+    ///Set the text character size.
+    ///
+    ///### Parameters
+    ///   s	The text size multiplier. Must be 1 or higher.
+    ///
+    ///Setting a text size of 1 will result in standard size characters with one pixel for each bit in the bitmap for a character. The value specified is a multiplier. A value of 2 will double the width and height. A value of 3 will triple the dimensions, etc.
+    pub fn set_text_size(&self, size: u8) {
+        unsafe { set_text_size(size) }
+    }
+    ///Turn sound on.
+    ///
+    ///The system is configured to generate sound. This function sets the sound mode only until the unit is powered off.
+    pub fn audio_on(&self) {
+        unsafe { arduboy_audio_on() }
+    }
+    ///Turn sound off (mute).
+    ///
+    ///The system is configured to not produce sound (mute). This function sets the sound mode only until the unit is powered off.
+    pub fn audio_off(&self) {
+        unsafe { arduboy_audio_off() }
+    }
+    pub fn audio_save_on_off(&self) {
+        unsafe { arduboy_audio_save_on_off() }
+    }
+    pub fn audio_toggle(&self) {
+        unsafe { arduboy_audio_toggle() }
+    }
+    pub fn audio_on_and_save(&self) {
+        unsafe {
+            arduboy_audio_on();
+            arduboy_audio_save_on_off()
+        }
+    }
+    ///Get the current sound state.
+    ///
+    ///### Returns
+    ///true if sound is currently enabled (not muted).
+    ///
+    ///This function should be used by code that actually generates sound. If true is returned, sound can be produced. If false is returned, sound should be muted.
+    pub fn audio_enabled(&self) -> bool {
+        unsafe { arduboy_audio_enabled() }
+    }
+    ///Invert the entire display or set it back to normal.
+    ///
+    ///### Parameters
+    ///inverse	true will invert the display. false will set the display to no-inverted.
+    ///
+    ///Calling this function with a value of true will set the display to inverted mode. A pixel with a value of 0 will be on and a pixel set to 1 will be off.
+    ///
+    ///Once in inverted mode, the display will remain this way until it is set back to non-inverted mode by calling this function with false.
+    pub fn invert(&self, inverse: bool) {
+        unsafe { arduboy_invert(inverse) }
+    }
+    pub fn collide_point(point: Point, rect: Rect) -> bool {
+        point.x >= rect.x
+            && point.x < rect.x + rect.width as i16
+            && point.y >= rect.y
+            && point.y < rect.y + rect.height as i16
+    }
+    pub fn collide_rect(rect1: Rect, rect2: Rect) -> bool {
+        !(rect2.x >= rect1.x + rect1.width as i16
+            || rect2.x + rect2.width as i16 <= rect1.x
+            || rect2.y >= rect1.y + rect1.height as i16
+            || rect2.y + rect2.height as i16 <= rect1.y)
+    }
+}
+
+extern "C" {
+    #[link_name = "arduboy_begin"]
+    pub fn begin();
+
+    #[link_name = "arduboy_clear"]
+    pub fn clear();
+
+    #[link_name = "arduboy_display"]
+    pub fn display();
+
+    #[link_name = "arduboy_display_and_clear_buffer"]
+    pub fn display_and_clear_buffer();
+
+    #[link_name = "arduboy_draw_fast_hline"]
+    fn draw_fast_hline_raw(x: i16, y: i16, w: u8, color: u8);
+
+    #[link_name = "arduboy_draw_fast_vline"]
+    fn draw_fast_vline_raw(x: i16, y: i16, h: u8, color: u8);
+
+    #[link_name = "arduboy_draw_pixel"]
+    fn draw_pixel_raw(x: i16, y: i16, color: u8);
+
+    #[link_name = "arduboy_draw_circle"]
+    fn draw_circle_raw(x: i16, y: i16, r: u8, color: u8);
+
+    #[link_name = "arduboy_draw_rect"]
+    fn draw_rect_raw(x: i16, y: i16, w: u8, h: u8, color: u8);
+
+    #[link_name = "arduboy_fill_circle"]
+    fn fill_circle_raw(x: i16, y: i16, r: u8, color: u8);
+
+    #[link_name = "arduboy_fill_rect"]
+    fn fill_rect_raw(x: i16, y: i16, w: u8, h: u8, color: u8);
+
+    #[link_name = "arduboy_get_pixel"]
+    fn get_pixel_raw(x: u8, y: u8) -> u8;
+
+    #[link_name = "arduboy_init_random_seed"]
+    pub fn init_random_seed();
+
+    #[link_name = "arduboy_just_pressed"]
+    pub fn just_pressed(button: u8) -> bool;
+
+    #[link_name = "arduboy_just_released"]
+    pub fn just_released(button: u8) -> bool;
+
+    #[link_name = "arduboy_not_pressed"]
+    pub fn not_pressed(button: u8) -> bool;
+
+    #[link_name = "arduboy_next_frame"]
+    pub fn next_frame() -> bool;
+
+    #[link_name = "arduboy_poll_buttons"]
+    pub fn poll_buttons();
+
+    #[link_name = "arduboy_pressed"]
+    pub fn pressed(buttons: u8) -> bool;
+
+    #[link_name = "arduboy_print_chars"]
+    pub fn print_chars(cstr: *const c_char);
+
+    #[link_name = "arduboy_print_chars_progmem"]
+    pub fn print_chars_progmem(pstring: *const c_char);
+
+    // #[link_name = "arduboy_print_char"]
+    // fn print_char(c: c_char) -> c_size_t;
+
+    #[link_name = "arduboy_print_int"]
+    pub fn print_int(n: c_int, base: c_int) -> c_size_t;
+
+    #[link_name = "arduboy_print_long"]
+    pub fn print_long(n: c_long, base: c_int) -> c_size_t;
+
+    #[link_name = "arduboy_print_unsigned_char"]
+    pub fn print_unsigned_char(n: c_uchar, base: c_int) -> c_size_t;
+
+    #[link_name = "arduboy_print_unsigned_int"]
+    pub fn print_unsigned_int(n: c_uint, base: c_int) -> c_size_t;
+
+    #[link_name = "arduboy_print_unsigned_long"]
+    pub fn print_unsigned_long(n: c_ulong, base: c_int) -> c_size_t;
+
+    #[link_name = "arduboy_set_cursor"]
+    pub fn set_cursor(x: i16, y: i16);
+
+    #[link_name = "arduboy_set_frame_rate"]
+    pub fn set_frame_rate(rate: u8);
+
+    #[link_name = "arduboy_set_text_size"]
+    pub fn set_text_size(size: u8);
+
+    #[link_name = "arduboy_audio_on"]
+    fn arduboy_audio_on();
+
+    #[link_name = "arduboy_audio_off"]
+    fn arduboy_audio_off();
+
+    #[link_name = "arduboy_audio_save_on_off"]
+    fn arduboy_audio_save_on_off();
+
+    #[link_name = "arduboy_audio_toggle"]
+    fn arduboy_audio_toggle();
+
+    #[link_name = "arduboy_audio_enabled"]
+    fn arduboy_audio_enabled() -> bool;
+
+    #[link_name = "arduboy_invert"]
+    fn arduboy_invert(inverse: bool);
+}
+
+pub unsafe fn print(x: impl Printable) {
+    x.print();
+}
+
+pub unsafe fn draw_fast_hline(x: i16, y: i16, w: u8, color: Color) {
+    draw_fast_hline_raw(x, y, w, color as u8);
+}
+
+pub unsafe fn draw_fast_vline(x: i16, y: i16, h: u8, color: Color) {
+    draw_fast_vline_raw(x, y, h, color as u8);
+}
+
+pub unsafe fn draw_pixel(x: i16, y: i16, color: Color) {
+    draw_pixel_raw(x, y, color as u8);
+}
+
+pub unsafe fn fill_rect(x: i16, y: i16, w: u8, h: u8, color: Color) {
+    fill_rect_raw(x, y, w, h, color as u8);
+}
+
+pub unsafe fn draw_circle(x: i16, y: i16, r: u8, color: Color) {
+    draw_circle_raw(x, y, r, color as u8);
+}
+
+pub unsafe fn get_pixel(x: u8, y: u8) -> Color {
+    mem::transmute::<u8, Color>(get_pixel_raw(x, y))
+}
+
\ No newline at end of file diff --git a/docs/doc/src/arduboy_rust/library/arduboy2.rs.html b/docs/doc/src/arduboy_rust/library/arduboy2.rs.html index 949c158..aef61bf 100644 --- a/docs/doc/src/arduboy_rust/library/arduboy2.rs.html +++ b/docs/doc/src/arduboy_rust/library/arduboy2.rs.html @@ -1,4 +1,4 @@ -arduboy2.rs - source
1
+arduboy2.rs - source
1
 2
 3
 4
diff --git a/docs/doc/src/arduboy_rust/library/arduboy_tone.rs.html b/docs/doc/src/arduboy_rust/library/arduboy_tone.rs.html
index 0d4fd37..f62a1f8 100644
--- a/docs/doc/src/arduboy_rust/library/arduboy_tone.rs.html
+++ b/docs/doc/src/arduboy_rust/library/arduboy_tone.rs.html
@@ -1,4 +1,4 @@
-arduboy_tone.rs - source
1
+arduboy_tone.rs - source
1
 2
 3
 4
diff --git a/docs/doc/src/arduboy_rust/library/arduboy_tone_pitch.rs.html b/docs/doc/src/arduboy_rust/library/arduboy_tone_pitch.rs.html
index 04dcd5d..3262790 100644
--- a/docs/doc/src/arduboy_rust/library/arduboy_tone_pitch.rs.html
+++ b/docs/doc/src/arduboy_rust/library/arduboy_tone_pitch.rs.html
@@ -1,4 +1,4 @@
-arduboy_tone_pitch.rs - source
1
+arduboy_tone_pitch.rs - source
1
 2
 3
 4
diff --git a/docs/doc/src/arduboy_rust/library/arduino.rs.html b/docs/doc/src/arduboy_rust/library/arduino.rs.html
index 19eb181..f27a82e 100644
--- a/docs/doc/src/arduboy_rust/library/arduino.rs.html
+++ b/docs/doc/src/arduboy_rust/library/arduino.rs.html
@@ -1,4 +1,4 @@
-arduino.rs - source
1
+arduino.rs - source
1
 2
 3
 4
diff --git a/docs/doc/src/arduboy_rust/library/c.rs.html b/docs/doc/src/arduboy_rust/library/c.rs.html
index 15b64f8..91d2b82 100644
--- a/docs/doc/src/arduboy_rust/library/c.rs.html
+++ b/docs/doc/src/arduboy_rust/library/c.rs.html
@@ -1,4 +1,4 @@
-c.rs - source
1
+c.rs - source
1
 2
 3
 4
diff --git a/docs/doc/src/arduboy_rust/library/eeprom.rs.html b/docs/doc/src/arduboy_rust/library/eeprom.rs.html
index abed50a..bab1cbc 100644
--- a/docs/doc/src/arduboy_rust/library/eeprom.rs.html
+++ b/docs/doc/src/arduboy_rust/library/eeprom.rs.html
@@ -1,4 +1,4 @@
-eeprom.rs - source
1
+eeprom.rs - source
1
 2
 3
 4
diff --git a/docs/doc/src/arduboy_rust/library/mod.rs.html b/docs/doc/src/arduboy_rust/library/mod.rs.html
index 96d1393..1496ab8 100644
--- a/docs/doc/src/arduboy_rust/library/mod.rs.html
+++ b/docs/doc/src/arduboy_rust/library/mod.rs.html
@@ -1,4 +1,4 @@
-mod.rs - source
1
+mod.rs - source
1
 2
 3
 4
diff --git a/docs/doc/src/arduboy_rust/library/progmem.rs.html b/docs/doc/src/arduboy_rust/library/progmem.rs.html
index b3368c1..cfe8278 100644
--- a/docs/doc/src/arduboy_rust/library/progmem.rs.html
+++ b/docs/doc/src/arduboy_rust/library/progmem.rs.html
@@ -1,4 +1,4 @@
-progmem.rs - source
1
+progmem.rs - source
1
 2
 3
 4
diff --git a/docs/doc/src/arduboy_rust/library/sprites.rs.html b/docs/doc/src/arduboy_rust/library/sprites.rs.html
index 5202457..a35d907 100644
--- a/docs/doc/src/arduboy_rust/library/sprites.rs.html
+++ b/docs/doc/src/arduboy_rust/library/sprites.rs.html
@@ -1,4 +1,4 @@
-sprites.rs - source
1
+sprites.rs - source
1
 2
 3
 4
diff --git a/docs/doc/src/arduboy_rust/prelude.rs.html b/docs/doc/src/arduboy_rust/prelude.rs.html
index 37a08fa..b2c6887 100644
--- a/docs/doc/src/arduboy_rust/prelude.rs.html
+++ b/docs/doc/src/arduboy_rust/prelude.rs.html
@@ -1,4 +1,4 @@
-prelude.rs - source
1
+prelude.rs - source
1
 2
 3
 4
diff --git a/docs/doc/src/arduboy_rust/print.rs.html b/docs/doc/src/arduboy_rust/print.rs.html
index 6cf2a63..5c5cfde 100644
--- a/docs/doc/src/arduboy_rust/print.rs.html
+++ b/docs/doc/src/arduboy_rust/print.rs.html
@@ -1,4 +1,4 @@
-print.rs - source
1
+print.rs - source
1
 2
 3
 4
diff --git a/docs/doc/src/panic_halt/lib.rs.html b/docs/doc/src/panic_halt/lib.rs.html
index 97bcaa1..831f49c 100644
--- a/docs/doc/src/panic_halt/lib.rs.html
+++ b/docs/doc/src/panic_halt/lib.rs.html
@@ -1,4 +1,4 @@
-lib.rs - source
1
+lib.rs - source
1
 2
 3
 4
diff --git a/run b/run
index 15ea40d..b6597fa 100755
--- a/run
+++ b/run
@@ -2,49 +2,57 @@
 
 option=$1
 
+upload(){
+    cargo build -p $option --release && cp ./target/arduboy/release/lib$option.a ./arduboy-rust/Wrapper-Project/lib/libgame.a && cd arduboy-rust/Wrapper-Project/ && pio run -v -t upload && cp ./.pio/build/arduboy/firmware.hex ./build/$option.hex && pio run -t clean && rm lib/libgame.a && cd ../../
+}
+
 if [ -z "$option" ]
 then
-    cargo doc -p arduboy-rust && rm -r ./docs/doc/ && cp -r ./target/arduboy/doc ./docs/
+    cargo build -p game --release && cp ./target/arduboy/release/libgame.a ./arduboy-rust/Wrapper-Project/lib/libgame.a && cd arduboy-rust/Wrapper-Project/ && pio run -v -t upload && cp ./.pio/build/arduboy/firmware.hex ./build/game.hex && pio run -t clean && rm lib/libgame.a && cd ../../
 elif [ "$option" = "doc" ] 
 then
-    cargo build -p snake --release && cp ./target/arduboy/release/libsnake.a ./Wrapper-Project/lib/libgame.a && cd Wrapper-Project/ && pio run -v -t upload && cp ./.pio/build/arduboy/firmware.hex ./.pio/build/snake.hex && pio run -t clean && rm lib/libgame.a && cd ..
+    cargo doc -p arduboy-rust && rm -r ./docs/doc/ && cp -r ./target/arduboy/doc ./docs/
 elif [ "$option" = "snake" ] 
 then
-    cargo build -p snake --release && cp ./target/arduboy/release/libsnake.a ./Wrapper-Project/lib/libgame.a && cd Wrapper-Project/ && pio run -v -t upload && cp ./.pio/build/arduboy/firmware.hex ./.pio/build/snake.hex && pio run -t clean && rm lib/libgame.a && cd ..
+    upload
 elif [ "$option" = "pong" ] 
 then
-    cargo build -p pong --release && cp ./target/arduboy/release/libpong.a ./Wrapper-Project/lib/libgame.a && cd Wrapper-Project/ && pio run -v -t upload && cp ./.pio/build/arduboy/firmware.hex ./.pio/build/pong.hex && pio run -t clean && rm lib/libgame.a && cd ..
+    upload
+elif [ "$option" = "drboy" ] 
+then
+    upload
 elif [ "$option" = "rustacean" ] 
 then
-    cargo build -p rustacean --release && cp ./target/arduboy/release/librustacean.a ./Wrapper-Project/lib/libgame.a && cd Wrapper-Project/ && pio run -v -t upload && cp ./.pio/build/arduboy/firmware.hex ./.pio/build/rustacean.hex && pio run -t clean && rm lib/libgame.a && cd ..
+    upload
 elif [ "$option" = "tone" ] 
 then
-    cargo build -p tone --release && cp ./target/arduboy/release/libtone.a ./Wrapper-Project/lib/libgame.a && cd Wrapper-Project/ && pio run -v -t upload && cp ./.pio/build/arduboy/firmware.hex ./.pio/build/tone.hex && pio run -t clean && rm lib/libgame.a && cd ..
+    upload
 elif [ "$option" = "eeprom" ] 
 then
-    cargo build -p eeprom --release && cp ./target/arduboy/release/libeeprom.a ./Wrapper-Project/lib/libgame.a && cd Wrapper-Project/ && pio run -v -t upload && cp ./.pio/build/arduboy/firmware.hex ./.pio/build/eeprom.hex && pio run -t clean && rm lib/libgame.a && cd ..
+    upload
 elif [ "$option" = "eeprom-byte" ] 
 then
-    cargo build -p eeprom-byte --release && cp ./target/arduboy/release/libeeprom_byte.a ./Wrapper-Project/lib/libgame.a && cd Wrapper-Project/ && pio run -v -t upload && cp ./.pio/build/arduboy/firmware.hex ./.pio/build/eeprom-byte.hex && pio run -t clean && rm lib/libgame.a && cd ..
+    cargo build -p eeprom-byte --release && cp ./target/arduboy/release/libeeprom_byte.a ./arduboy-rust/Wrapper-Project/lib/libgame.a && cd arduboy-rust/Wrapper-Project/ && pio run -v -t upload && cp ./.pio/build/arduboy/firmware.hex ./build/eeprom-byte.hex && pio run -t clean && rm lib/libgame.a && cd ../../
 elif [ "$option" = "progmem" ] 
 then
-    cargo build -p progmem --release && cp ./target/arduboy/release/libprogmem.a ./Wrapper-Project/lib/libgame.a && cd Wrapper-Project/ && pio run -v -t upload && cp ./.pio/build/arduboy/firmware.hex ./.pio/build/progmem.hex && pio run -t clean && rm lib/libgame.a && cd ..
+    upload
 elif [ "$option" = "demo2" ] 
 then
-    cargo build -p demo2 --release && cp ./target/arduboy/release/libdemo2.a ./Wrapper-Project/lib/libgame.a && cd Wrapper-Project/ && pio run -v -t upload && cp ./.pio/build/arduboy/firmware.hex ./.pio/build/demo2.hex && pio run -t clean && rm lib/libgame.a && cd ..
+    upload
 elif [ "$option" = "demo3" ] 
 then
-    cargo build -p demo3 --release && cp ./target/arduboy/release/libdemo3.a ./Wrapper-Project/lib/libgame.a && cd Wrapper-Project/ && pio run -v -t upload && cp ./.pio/build/arduboy/firmware.hex ./.pio/build/demo3.hex && pio run -t clean && rm lib/libgame.a && cd ..
+    upload
 elif [ "$option" = "demo4" ] 
 then
-    cargo build -p demo4 --release && cp ./target/arduboy/release/libdemo4.a ./Wrapper-Project/lib/libgame.a && cd Wrapper-Project/ && pio run -v -t upload && cp ./.pio/build/arduboy/firmware.hex ./.pio/build/demo4.hex && pio run -t clean && rm lib/libgame.a && cd ..
+    upload
 elif [ "$option" = "demo5" ] 
 then
-    cargo build -p demo5 --release && cp ./target/arduboy/release/libdemo5.a ./Wrapper-Project/lib/libgame.a && cd Wrapper-Project/ && pio run -v -t upload && cp ./.pio/build/arduboy/firmware.hex ./.pio/build/demo5.hex && pio run -t clean && rm lib/libgame.a && cd ..
+    upload
 elif [ "$option" = "demo6" ] 
 then
-    cargo build -p demo6 --release && cp ./target/arduboy/release/libdemo6.a ./Wrapper-Project/lib/libgame.a && cd Wrapper-Project/ && pio run -v -t upload && cp ./.pio/build/arduboy/firmware.hex ./.pio/build/demo6.hex && pio run -t clean && rm lib/libgame.a && cd ..
+    upload
 else
     echo Usage: for uploading your game \|./run.sh
     echo Usage: for uploading an example game \| ./run.sh \
 fi
+
diff --git a/run.bat b/run.bat
index 353303f..e4dc655 100644
--- a/run.bat
+++ b/run.bat
@@ -14,6 +14,8 @@ if %option%==snake (
    goto :eof
 ) else if %option%==pong (
    goto :run
+) else if %option%==drboy (
+   goto :run
 ) else if %option%==rustacean (
    goto :run
 ) else if %option%==tone (