diff --git a/arduboy-rust/src/lib.rs b/arduboy-rust/src/lib.rs
index 2ae2472..60a4f30 100644
--- a/arduboy-rust/src/lib.rs
+++ b/arduboy-rust/src/lib.rs
@@ -23,7 +23,7 @@
//!
//! To get an idea, the ArduboyTones Library needs additional 2-3% of the flash memory.
//!
-//! [Here is the link to the GitHub Repo](https://github.com/zenndev1337/rust-for-arduboy)
+//! Here is the link to the GitHub Repo
extern crate panic_halt;
pub mod hardware;
diff --git a/docs/doc/arduboy_rust/all.html b/docs/doc/arduboy_rust/all.html
index fd884e0..f9e8f0b 100644
--- a/docs/doc/arduboy_rust/all.html
+++ b/docs/doc/arduboy_rust/all.html
@@ -1 +1 @@
-
\ 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 9e6d57d..13366a4 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
\ 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 6920f2e..f4c5afc 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
\ 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 e0713eb..cfd262b 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
\ 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 42856f2..2a79556 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
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 a92cef0..8e789cb 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
\ 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 112cb08..6dd4afd 100644
--- a/docs/doc/arduboy_rust/arduboy2/struct.Arduboy2.html
+++ b/docs/doc/arduboy_rust/arduboy2/struct.Arduboy2.html
@@ -1,15 +1,15 @@
-Arduboy2 in arduboy_rust::arduboy2 - Rust
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.
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.
@@ -33,7 +33,7 @@ The contents of the display buffer in RAM are copied to the display and will app
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.
button The button to test for. Only one button should be specified.
@@ -141,7 +141,7 @@ The contents of the display buffer in RAM are copied to the display and will app
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.
button The button to test for. Only one button should be specified.
@@ -151,7 +151,7 @@ The contents of the display buffer in RAM are copied to the display and will app
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.
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.
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.
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:
@@ -193,7 +193,7 @@ arduboy.print(b"Hello World\n\0"[..]); arduboy.print(value); // Prints "42"
arduboy.print("\n\0"); // Sets the text cursor to the start of the next line
arduboy.print("hello world") // Prints normal [&str]
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.
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.
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.
The current sound state, set by on() or off(), is saved to the reserved system area in EEPROM. This allows the state to carry over between power cycles and after uploading a different sketch.
Note
EEPROM is limited in the number of times it can be written to. Sketches should not continuously change and then save the state rapidly.
If the system is configured for sound on, it will be changed to sound off (mute). If sound is off, it will be changed to on. This function sets the sound mode only until the unit is powered off. To save the current mode use saveOnOff().
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.
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.
Test if a rectangle is intersecting with another rectangle.
Parameters
rect1,rect2 Structures describing the size and locations of the rectangles.
@@ -255,14 +255,14 @@ true if the specified point is within the specified rectangle.
Returns
true if the first rectangle is intersecting the second.
This function is intended to detemine if an object, whose boundaries are defined by the given rectangle, is in contact with another rectangular object.
Set one of the RGB LEDs digitally, to either fully on or fully off.
Parameters
color The name of the LED to set. The value given should be one of RED_LED, GREEN_LED or BLUE_LED.
val Indicates whether to turn the specified LED on or off. The value given should be RGB_ON or RGB_OFF.
This 2 parameter version of the function will set a single LED within the RGB LED either fully on or fully off. See the description of the 3 parameter version of this function for more details on the RGB LED.
Set the RGB LEDs digitally, to either fully on or fully off.
Parameters
red,green,blue Use value RGB_ON or RGB_OFF to set each LED.
@@ -278,7 +278,7 @@ true if the first rectangle is intersecting the second.
RGB_ON RGB_OFF RGB_ON Magenta
RGB_ON RGB_ON RGB_OFF Yellow
RGB_ON RGB_ON RGB_ON White
-
Flip the display vertically or set it back to normal.
Parameters
flipped true will set vertical flip mode. false will set normal vertical orientation.
Calling this function with a value of true will cause the Y coordinate to start at the bottom edge of the display instead of the top, effectively flipping the display vertically.
Once in vertical flip mode, it will remain this way until normal vertical mode is set by calling this function with a value of false.
Flip the display horizontally or set it back to normal.
Parameters
flipped true will set horizontal flip mode. false will set normal horizontal orientation.
Calling this function with a value of true will cause the X coordinate to start at the left edge of the display instead of the right, effectively flipping the display horizontally.
Once in horizontal flip mode, it will remain this way until normal horizontal mode is set by calling this function with a value of false.
color The background color to be used for following text. The values WHITE or BLACK should be used.
The background pixels of following characters will be set to the specified color.
However, if the background color is set to be the same as the text color, the background will be transparent. Only the foreground pixels will be drawn. The background pixels will remain as they were before the character was drawn.
x The X (horizontal) coordinate, in pixels, for the new location of the text cursor.
The X coordinate for the location of the text cursor is set to the specified value, leaving the Y coordinate unchanged. For more details about the text cursor, see the setCursor() function.
y The Y (vertical) coordinate, in pixels, for the new location of the text cursor.
The Y coordinate for the location of the text cursor is set to the specified value, leaving the X coordinate unchanged. For more details about the text cursor, see the setCursor() function.
Text wrap mode is enabled by specifying true. In wrap mode, if a character to be drawn would end up partially or fully past the right edge of the screen (based on the current text size), it will be placed at the start of the next line. The text cursor will be adjusted accordingly.
If wrap mode is disabled, characters will always be written at the current text cursor position. A character near the right edge of the screen may only be partially displayed and characters drawn at a position past the right edge of the screen will remain off screen.
This puts the CPU in idle sleep mode. You should call this as often as you can for the best power savings. The timer 0 overflow interrupt will wake up the chip every 1ms, so even at 60 FPS a well written app should be able to sleep maybe half the time in between rendering it’s own frames.
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 8b75b7a..dd76069 100644
--- a/docs/doc/arduboy_rust/arduboy2/struct.Point.html
+++ b/docs/doc/arduboy_rust/arduboy2/struct.Point.html
@@ -1,10 +1,10 @@
-Point in arduboy_rust::arduboy2 - Rust
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 e8fd273..935ae34 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
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 9759113..f104ecd 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
\ 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 d8693ee..fc839da 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
\ 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 8df2add..c6a7b4a 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
\ 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 fff5653..aa2c76c 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
\ 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 1104cf7..00070dc 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
\ 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 160f7dc..94c5ece 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
\ 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 b906d67..b80f96c 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
\ 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 e22b7e7..a3e77f8 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
\ 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 96c8214..58c4f9d 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
\ 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 c846711..21da961 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
\ 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 c58cd62..794bc08 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
\ 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 0437576..bc998c3 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
\ 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 6015732..53fac10 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
\ 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 e75be26..5425815 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
\ 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 84f2c84..f4aee5b 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
\ 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 391aaa9..52c8e2b 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
\ 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 e6a6188..cd53e40 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
\ 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 ef46b28..b0a5e99 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
\ 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 1f8b019..daac4ac 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
\ 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 b2c815e..07b9e79 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
\ 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 3623528..a08d7ff 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
\ 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 d251da1..6401bcf 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
\ 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 4dc54c8..f600ea9 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
\ 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 abe1a9d..5d85ff6 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
\ 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 dae1168..1f3feb6 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
\ 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 cf3e1ba..ce55bc7 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
\ 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 5b9a233..dc1fe7f 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
\ 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 a09ab1c..adcea2e 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
\ 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 44ee870..3facde0 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
\ 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 e067619..d9a78f5 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
\ 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 d2e43d9..2546806 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
\ 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 425009c..f055361 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
\ 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 bd67ea6..38e8f69 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
\ 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 90569a2..c5176b8 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
\ 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 9182273..9e936fa 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
\ 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 334226c..228c1e8 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
\ 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 d38ca67..8666de6 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
\ 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 2b25925..cf82fd4 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
\ 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 16294b3..93ba4cb 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
\ 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 c97aebc..fd6eb2a 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
\ 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 83306a5..fe16856 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
\ 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 1308304..c83591d 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
\ 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 fe0fce8..29e5d69 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
\ 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 d61b8c9..5c487c1 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
\ 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 b12c847..3fb7f5e 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
\ 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 d755537..2d827a3 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
\ 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 fc26ea3..b289c50 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
\ 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 1b8492d..06f4742 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
\ 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 f146d19..6184ce2 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
\ 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 ef25713..e2b8ab7 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
\ 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 8c0d9aa..2aab224 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
\ 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 e208297..51aab53 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
\ 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 dc9fd2e..1a74b68 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
\ 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 09674b1..d7d7d6d 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
\ 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 77186b0..e4761d3 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
\ 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 8d8df60..9b28f50 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
\ 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 97fbb2c..61f4e15 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
\ 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 6a08323..3daf17d 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
\ 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 100c29a..e8d3668 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
\ 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 8948588..61968e3 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
\ 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 fa20f3c..e19f9aa 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
\ 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 c7f7f94..1bc117e 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
\ 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 be08d46..18df2ba 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
\ 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 d915edf..f384760 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
\ 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 805ee00..6b94054 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
\ 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 c26a4a1..7b9c1fe 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
\ 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 4cff7e2..a194bd5 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
\ 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 85e0933..dbf02b9 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
\ 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 76cc2a6..09396c1 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
\ 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 030b516..9341d43 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
\ 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 61e973b..5c1e940 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
\ 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 b799717..ecbb650 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
\ 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 c2669b0..c23f710 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
\ 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 a732ada..0c1f0ec 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
\ 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 c964e4f..ceb4aa5 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
\ 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 850fcdd..0328cd6 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
\ 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 9009ee0..a5564f5 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
\ 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 90520dd..5cc2be7 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
\ 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 7870816..dd924b8 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
\ 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 6868e5e..4338b49 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
\ 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 5ecdee2..e8e323b 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
\ 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 ddeb4ec..03213b2 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
\ 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 cbe5298..646629b 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
\ 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 a541fb0..bbf732b 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
\ 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 2676952..a8b35fb 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
\ 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 ddd9ffa..eb6965b 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
\ 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 95a2b00..57fec1b 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
\ 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 8b546a8..f63db15 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
\ 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 0a7c599..f1e4256 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
\ 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 6f07af0..f0505bb 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
\ 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 d2e30cc..584491b 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
\ 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 392b189..e18821c 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
\ 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 611e698..c5efc9f 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
\ 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 ef1f129..e8a5428 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
\ 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 3d18f62..9947340 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
\ 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 03b3d69..199d69e 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
\ 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 cc86131..35cf6a1 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
\ 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 9e19b43..cc9f260 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
\ 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 8b79131..d40743e 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
\ 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 01a3292..8d29868 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
\ 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 b1e0d1e..3e22e45 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
\ 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 3f7915c..a6458ce 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
\ 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 202f165..db09978 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
\ 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 dbf40cb..92ebbc2 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
\ 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 617e347..80e1886 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
\ 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 efbb36a..53df6d8 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
\ 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 40037b7..613a24e 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
\ 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 cfb80d5..6c94718 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
\ 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 45d95df..400b608 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
\ 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 d4167db..6dd263a 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
\ 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 27f69d2..a77ae15 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
\ 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 b898d97..8b17e00 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
\ 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 087c6d3..0ab8103 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
\ 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 477695f..d890d46 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
\ 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 cecea86..b8e7c06 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
\ 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 bdd3a7c..5233e8a 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
\ 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 6bdb7a7..39689e8 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
\ 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 12806fd..849bf89 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
\ 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 edf2bba..e09b5b6 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
\ 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 ede0127..0a96e8f 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
\ 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 4ddccf7..9c8f0f1 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
\ 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 b307eba..7b1ea7f 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
\ 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 2ba6af8..41e370a 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
\ 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 db78ef5..06c66a9 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
\ 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 95e0659..3f41fb0 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
\ 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 0d45ed0..26ae804 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
\ 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 0b0be35..5b09a0a 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
\ 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 0623820..e0c04e8 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
\ 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 d3ad7b2..9c57365 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
\ 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 a859d4d..e494e31 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
\ 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 1320e27..9352858 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
\ 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 6b938e8..9fd72b5 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
\ 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 f8b926e..1b1fe90 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
\ 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 7531513..c5a062e 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
\ 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 2a868bd..1de6d67 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
\ 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 44a6b78..85c9aa9 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
\ 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 7dfcc0c..c082962 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
\ 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 f301c39..4312155 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
\ 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 311341e..3d3328d 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
\ 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 cb02127..55ad90f 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
\ 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 30f0659..f53fdd2 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
\ 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 ae14332..8605c36 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
\ 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 598b7fa..7642243 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
\ 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 8c1d18e..01acfef 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
\ 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 efcf8e7..9fe85ac 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
\ 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 c7ef21b..037b232 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
\ 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 62847bb..1974db9 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
\ 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 e8ab3c8..6ae55c0 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
\ 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 765e2e7..8701c76 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
\ 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 0b53b7f..7905cf3 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
\ 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 877c1ad..0d2bfe6 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
\ 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 8ed7e55..2abdc13 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
\ 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 fb10dc2..058d147 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
\ 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 e04f4a4..655549c 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
\ 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 ce32808..f4d2f8d 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
\ 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 1475801..c691131 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
\ 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 017eea7..2d202fd 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
\ 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 0f787db..fc166f6 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
\ 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 79cbd54..ce0b174 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
\ 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 b201f5f..80dd783 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
\ 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 e2bc74b..bb655e7 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
\ 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 3cec9bd..a6315c5 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
\ 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 e53e540..f6799ee 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
\ 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 88acde6..0847e01 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
\ 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 3b6347f..38f3f81 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
\ 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 72962eb..3f83bf5 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
\ 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 1a7d4ff..5d73b6c 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
\ 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 618dbd3..d6e018c 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
\ 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 88c1588..cf6c271 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
\ 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 2cb1b18..52bd23b 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
\ 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 8e43495..8985024 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
\ 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 15c48f8..b8e0946 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
\ 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 6f5090d..19cf131 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
\ 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 1f9cead..3867ee5 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
\ 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 5692d07..fd27b2b 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
\ 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 5c2fb96..2720376 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
\ 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 d708792..5ab800b 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
\ 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 eb44fb1..ff264ce 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
\ 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 097e4eb..22efb8e 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
\ 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 2d47c65..66b59a6 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
\ 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 4cffc7b..578792d 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
\ 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 d577516..091bd19 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
\ 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 c5fda18..dad3ce4 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
\ 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 e97740c..5c17060 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
\ 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 6eae83c..bb56999 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
\ 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 72095e2..b954be5 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
\ 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 6eef8f1..81f9895 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
\ 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 db63637..29b158c 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
\ 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 815e495..81cd167 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
\ 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 5a2e68b..0878c93 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
\ 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 035d990..16076c6 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
\ 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 1326e47..f0ed8d9 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
\ 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 38733ca..b481722 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
\ 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 7b68a89..6b92fb3 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
\ 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 f72a0b4..c0861b5 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
\ 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 35b3a31..c271a09 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
\ 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 16ad18d..a283532 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
\ 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 acf8f56..7504723 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
\ 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 4b869d3..e546ddf 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
\ 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 6b00d87..f6549c1 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
\ 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 7f572f6..39857cb 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
\ 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 556552d..20ae91a 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
\ 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 426944b..535f55c 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
\ 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 1c8c2c7..72bd469 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
\ 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 c5ce73c..0317780 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
\ 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 5542257..a2438f4 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
\ 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 55cf7d8..3c3b64b 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
\ 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 19a59ac..401f66d 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
\ 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 1d30a20..85baf3a 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
\ 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 de084e2..d05cc78 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
\ 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 055ae99..ea6431c 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
\ 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 7c903c2..ecc1bd3 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
\ 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 f90c715..08353b9 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
\ 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 9948472..6b77762 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
\ 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 066cde5..b5381a8 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
\ 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 3f495f9..8682b14 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
\ 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 aa7f92a..276b011 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
\ 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 cda62e6..571e00d 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
\ 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 4036625..1273a98 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
\ 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 6ddb24b..6acec46 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
\ 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 ac60414..897fa62 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
\ 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 bef5549..8e4df3e 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
\ 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 338cfe0..c381dd8 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
\ 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 ae5182b..8dc5475 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
\ 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 6f5b1ed..6988536 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
\ 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 83e301d..f03ad44 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
\ 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 4de5196..8dee61b 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
\ 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 9d27864..b448309 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
\ 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 9f7a54d..2badec1 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
\ 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 bf0a201..f3b9f05 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
\ 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 1b6ac59..001e477 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
\ 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 9173bfb..5eab798 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
\ 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 cc0a1df..d2348a1 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
\ 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 596ada4..bc05d70 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
\ 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 6d0ed12..7b4b408 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
\ 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 89c678e..ff3d2bc 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
\ 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 736ce15..e98c7f5 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
\ 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 3e272a4..92b8ed3 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
\ 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 0d723cf..91ff3e5 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
\ 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 725a8c9..eb7661d 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
\ 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 bbfb777..fbcc1c9 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
\ 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 d7b2597..d903025 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
\ 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 c101a1c..42e8293 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
\ 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 d79ec87..6998c39 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
\ 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 5f2da64..3908218 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
\ 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 48f0dd5..57537eb 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
\ 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 440d7dc..2059ac9 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
\ 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 de87856..4f0e955 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
\ 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 218bb3f..df72a59 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
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 5f30fab..136595a 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
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 a9c928a..04df5a3 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
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 d36b0dd..56ff91a 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
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 49403eb..358e700 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
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 f2d2ad1..1839fb4 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
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 fc7bcdf..2d304fd 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
\ 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 22b867a..26ea2d9 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
\ 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 be12b0f..aabfa17 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
\ 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 ced88e3..8f290da 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
\ 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 5fd7ed9..137f0c9 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
\ 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 f8a42c3..7374c46 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
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 c5dcd84..b19d768 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
\ 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 c46ff6a..d630d74 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
\ 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 0becc6a..8564f90 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
\ 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 31c0038..7e77162 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
\ 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 6fb3966..4f69d48 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
\ 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 a0a7268..183ab42 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
\ 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 e63e48c..e5a1048 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
\ 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 ddc9e4f..6e62b0d 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
\ 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 6a3968e..70389f9 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
\ 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 fb3ae68..cb3832b 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
\ 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 08a7ca0..3bfd568 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
\ 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 388f379..c0d7dc5 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
\ 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 f913b5a..5380238 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
\ 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 f0c8bc2..ee03487 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
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 a822e25..e50e6c1 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
\ 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 5a29614..0024330 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
\ 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 8138f8c..31d572f 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
\ 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 77f1d9a..abcfdab 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
\ 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 e6b2ae7..e4761ea 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
\ 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 834feea..0d2ec5a 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
\ 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 fcf6bf3..d5628d1 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
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/heapless/binary_heap/enum.Max.html b/docs/doc/arduboy_rust/heapless/binary_heap/enum.Max.html
index 10242a2..ca51a4e 100644
--- a/docs/doc/arduboy_rust/heapless/binary_heap/enum.Max.html
+++ b/docs/doc/arduboy_rust/heapless/binary_heap/enum.Max.html
@@ -1,4 +1,4 @@
-Max in arduboy_rust::heapless::binary_heap - Rust
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/heapless/binary_heap/enum.Min.html b/docs/doc/arduboy_rust/heapless/binary_heap/enum.Min.html
index c06af34..09cbe28 100644
--- a/docs/doc/arduboy_rust/heapless/binary_heap/enum.Min.html
+++ b/docs/doc/arduboy_rust/heapless/binary_heap/enum.Min.html
@@ -1,4 +1,4 @@
-Min in arduboy_rust::heapless::binary_heap - Rust
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/heapless/binary_heap/index.html b/docs/doc/arduboy_rust/heapless/binary_heap/index.html
index 2836246..33fdac2 100644
--- a/docs/doc/arduboy_rust/heapless/binary_heap/index.html
+++ b/docs/doc/arduboy_rust/heapless/binary_heap/index.html
@@ -1,4 +1,4 @@
-arduboy_rust::heapless::binary_heap - Rust
Structure wrapping a mutable reference to the greatest item on a
diff --git a/docs/doc/arduboy_rust/heapless/binary_heap/struct.BinaryHeap.html b/docs/doc/arduboy_rust/heapless/binary_heap/struct.BinaryHeap.html
index b58129d..e5cd2ae 100644
--- a/docs/doc/arduboy_rust/heapless/binary_heap/struct.BinaryHeap.html
+++ b/docs/doc/arduboy_rust/heapless/binary_heap/struct.BinaryHeap.html
@@ -1,4 +1,4 @@
-BinaryHeap in arduboy_rust::heapless::binary_heap - Rust
It is a logic error for an item to be modified in such a way that the item’s ordering relative
to any other item, as determined by the Ord trait, changes while it is in the heap. This is
@@ -193,5 +193,5 @@ heap.push(1).unwrap();
That is, this conversion is whatever the implementation of
[From]<T> for U chooses to do.
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/heapless/binary_heap/struct.PeekMut.html b/docs/doc/arduboy_rust/heapless/binary_heap/struct.PeekMut.html
index a27e3de..fd3255c 100644
--- a/docs/doc/arduboy_rust/heapless/binary_heap/struct.PeekMut.html
+++ b/docs/doc/arduboy_rust/heapless/binary_heap/struct.PeekMut.html
@@ -1,4 +1,4 @@
-PeekMut in arduboy_rust::heapless::binary_heap - Rust
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/heapless/binary_heap/trait.Kind.html b/docs/doc/arduboy_rust/heapless/binary_heap/trait.Kind.html
index b595623..a230945 100644
--- a/docs/doc/arduboy_rust/heapless/binary_heap/trait.Kind.html
+++ b/docs/doc/arduboy_rust/heapless/binary_heap/trait.Kind.html
@@ -1,2 +1,2 @@
-Kind in arduboy_rust::heapless::binary_heap - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/heapless/enum.Entry.html b/docs/doc/arduboy_rust/heapless/enum.Entry.html
index 536fcc3..14d1871 100644
--- a/docs/doc/arduboy_rust/heapless/enum.Entry.html
+++ b/docs/doc/arduboy_rust/heapless/enum.Entry.html
@@ -1,4 +1,4 @@
-Entry in arduboy_rust::heapless - Rust
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/heapless/index.html b/docs/doc/arduboy_rust/heapless/index.html
index 1a5f22c..0eabe47 100644
--- a/docs/doc/arduboy_rust/heapless/index.html
+++ b/docs/doc/arduboy_rust/heapless/index.html
@@ -1,4 +1,4 @@
-arduboy_rust::heapless - Rust
static friendly data structures that don’t require dynamic memory allocation
The core principle behind heapless is that its data structures are backed by a static memory
allocation. For example, you can think of heapless::Vec as an alternative version of
std::Vec with fixed capacity and that can’t be re-allocated on the fly (e.g. via push).
A fixed sorted priority linked list, similar to BinaryHeap but with different properties
on push, pop, etc.
For example, the sorting of the list will never memcpy the underlying value, so having large
objects in the list will not cause a performance hit.
diff --git a/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.FindMut.html b/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.FindMut.html
index f65ece0..0278d0c 100644
--- a/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.FindMut.html
+++ b/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.FindMut.html
@@ -1,4 +1,4 @@
-FindMut in arduboy_rust::heapless::sorted_linked_list - Rust
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/heapless/sorted_linked_list/struct.Iter.html b/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.Iter.html
index 478baf8..e716d6f 100644
--- a/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.Iter.html
+++ b/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.Iter.html
@@ -1,4 +1,4 @@
-Iter in arduboy_rust::heapless::sorted_linked_list - Rust
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/heapless/sorted_linked_list/struct.LinkedIndexU16.html b/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.LinkedIndexU16.html
index f40a4c3..8f38d0b 100644
--- a/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.LinkedIndexU16.html
+++ b/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.LinkedIndexU16.html
@@ -1,4 +1,4 @@
-LinkedIndexU16 in arduboy_rust::heapless::sorted_linked_list - Rust
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/heapless/sorted_linked_list/struct.LinkedIndexU8.html b/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.LinkedIndexU8.html
index dbbd845..b8f59d0 100644
--- a/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.LinkedIndexU8.html
+++ b/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.LinkedIndexU8.html
@@ -1,4 +1,4 @@
-LinkedIndexU8 in arduboy_rust::heapless::sorted_linked_list - Rust
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/heapless/sorted_linked_list/struct.LinkedIndexUsize.html b/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.LinkedIndexUsize.html
index c63080f..4bad764 100644
--- a/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.LinkedIndexUsize.html
+++ b/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.LinkedIndexUsize.html
@@ -1,4 +1,4 @@
-LinkedIndexUsize in arduboy_rust::heapless::sorted_linked_list - Rust
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/heapless/sorted_linked_list/struct.Max.html b/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.Max.html
index dbb2258..f476ca9 100644
--- a/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.Max.html
+++ b/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.Max.html
@@ -1,4 +1,4 @@
-Max in arduboy_rust::heapless::sorted_linked_list - Rust
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/heapless/sorted_linked_list/struct.Min.html b/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.Min.html
index 6871435..01d1dba 100644
--- a/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.Min.html
+++ b/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.Min.html
@@ -1,4 +1,4 @@
-Min in arduboy_rust::heapless::sorted_linked_list - Rust
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/heapless/sorted_linked_list/struct.Node.html b/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.Node.html
index 2d47de3..fd64a0c 100644
--- a/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.Node.html
+++ b/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.Node.html
@@ -1,4 +1,4 @@
-Node in arduboy_rust::heapless::sorted_linked_list - Rust
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/heapless/sorted_linked_list/struct.SortedLinkedList.html b/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.SortedLinkedList.html
index 1682156..e616bca 100644
--- a/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.SortedLinkedList.html
+++ b/docs/doc/arduboy_rust/heapless/sorted_linked_list/struct.SortedLinkedList.html
@@ -1,4 +1,4 @@
-SortedLinkedList in arduboy_rust::heapless::sorted_linked_list - Rust
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/heapless/sorted_linked_list/trait.Kind.html b/docs/doc/arduboy_rust/heapless/sorted_linked_list/trait.Kind.html
index 5101c01..538a0cc 100644
--- a/docs/doc/arduboy_rust/heapless/sorted_linked_list/trait.Kind.html
+++ b/docs/doc/arduboy_rust/heapless/sorted_linked_list/trait.Kind.html
@@ -1,2 +1,2 @@
-Kind in arduboy_rust::heapless::sorted_linked_list - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/heapless/sorted_linked_list/trait.SortedLinkedListIndex.html b/docs/doc/arduboy_rust/heapless/sorted_linked_list/trait.SortedLinkedListIndex.html
index 3583833..27e2112 100644
--- a/docs/doc/arduboy_rust/heapless/sorted_linked_list/trait.SortedLinkedListIndex.html
+++ b/docs/doc/arduboy_rust/heapless/sorted_linked_list/trait.SortedLinkedListIndex.html
@@ -1,2 +1,2 @@
-SortedLinkedListIndex in arduboy_rust::heapless::sorted_linked_list - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/heapless/struct.BinaryHeap.html b/docs/doc/arduboy_rust/heapless/struct.BinaryHeap.html
index e065857..6d94c88 100644
--- a/docs/doc/arduboy_rust/heapless/struct.BinaryHeap.html
+++ b/docs/doc/arduboy_rust/heapless/struct.BinaryHeap.html
@@ -1,4 +1,4 @@
-BinaryHeap in arduboy_rust::heapless - Rust
It is a logic error for an item to be modified in such a way that the item’s ordering relative
to any other item, as determined by the Ord trait, changes while it is in the heap. This is
@@ -193,5 +193,5 @@ heap.push(1).unwrap();
That is, this conversion is whatever the implementation of
[From]<T> for U chooses to do.
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/heapless/struct.Deque.html b/docs/doc/arduboy_rust/heapless/struct.Deque.html
index b392315..48beda9 100644
--- a/docs/doc/arduboy_rust/heapless/struct.Deque.html
+++ b/docs/doc/arduboy_rust/heapless/struct.Deque.html
@@ -1,4 +1,4 @@
-Deque in arduboy_rust::heapless - Rust
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/heapless/struct.HistoryBuffer.html b/docs/doc/arduboy_rust/heapless/struct.HistoryBuffer.html
index 1e2bbf3..c7992a8 100644
--- a/docs/doc/arduboy_rust/heapless/struct.HistoryBuffer.html
+++ b/docs/doc/arduboy_rust/heapless/struct.HistoryBuffer.html
@@ -1,4 +1,4 @@
-HistoryBuffer in arduboy_rust::heapless - Rust
A “history buffer”, similar to a write-only ring buffer of fixed length.
This buffer keeps a fixed number of elements. On write, the oldest element
is overwritten. Thus, the buffer is useful to keep a history of values with
some desired depth, and for example calculate a rolling average.
This panics if the length of the resulting slice would overflow a usize.
-
This is only possible when flattening a slice of arrays of zero-sized
-types, and thus tends to be irrelevant in practice. If
-size_of::<T>() > 0, this will never panic.
let x = &[0, 1, 2];
if let Some((first, elements)) = x.split_first() {
@@ -165,7 +99,7 @@ types, and thus tends to be irrelevant in practice. If
assert_eq!(elements, &[1, 2]);
}
let x = &[0, 1, 2];
if let Some((last, elements)) = x.split_last() {
@@ -173,14 +107,14 @@ types, and thus tends to be irrelevant in practice. If
assert_eq!(elements, &[0, 1]);
}
#![feature(slice_first_last_chunk)]
let u = [10, 40, 30];
@@ -193,7 +127,7 @@ types, and thus tends to be irrelevant in practice. If
assert_eq!(Some(&[]), w.first_chunk::<0>());
let v = [10, 40, 30];
assert_eq!(Some(&40), v.get(1));
assert_eq!(Some(&[10, 40][..]), v.get(0..2));
@@ -247,10 +181,10 @@ or None if out of bounds.
I: SliceIndex<[T]>,
Returns a reference to an element or subslice, without doing bounds
checking.
let x = &[1, 2, 4];
unsafe {
@@ -264,7 +198,7 @@ is never written to (except inside an UnsafeCell) using this pointe
derived from it. If you need to mutate the contents of the slice, use as_mut_ptr.
Modifying the container referenced by this slice may cause its buffer
to be reallocated, which would also make any pointers to it invalid.
Returns an iterator over all contiguous windows of length
size. The windows overlap. If the slice is shorter than
size, the iterator returns no values.
let slice = ['r', 'u', 's', 't'];
let mut iter = slice.windows(2);
assert_eq!(iter.next().unwrap(), &['r', 'u']);
@@ -341,9 +275,9 @@ slice, then the last chunk will not have length chunk_size.
See chunks_exact for a variant of this iterator that returns chunks of always exactly
chunk_size elements, and rchunks for the same iterator but starting at the end of the
slice.
let slice = ['l', 'o', 'r', 'e', 'm'];
let mut iter = slice.chunks(2);
assert_eq!(iter.next().unwrap(), &['l', 'o']);
@@ -359,9 +293,9 @@ from the remainder function of the iterator.
resulting code better than in the case of chunks.
See chunks for a variant of this iterator that also returns the remainder as a smaller
chunk, and rchunks_exact for the same iterator but starting at the end of the slice.
let slice = ['l', 'o', 'r', 'e', 'm'];
let mut iter = slice.chunks_exact(2);
assert_eq!(iter.next().unwrap(), &['l', 'o']);
@@ -370,13 +304,13 @@ chunk, and rchunks_exact for the
assert_eq!(iter.remainder(), &['m']);
#![feature(slice_as_chunks)]
let slice = ['l', 'o', 'r', 'e', 'm'];
let (remainder, chunks) = slice.as_rchunks();
@@ -430,10 +364,10 @@ beginning of the slice.
length of the slice, then the last up to N-1 elements will be omitted and can be
retrieved from the remainder function of the iterator.
This method is the const generic equivalent of chunks_exact.
#![feature(array_chunks)]
let slice = ['l', 'o', 'r', 'e', 'm'];
let mut iter = slice.array_chunks();
@@ -445,10 +379,10 @@ error before this method gets stabilized.
starting at the beginning of the slice.
#![feature(array_windows)]
let slice = [0, 1, 2, 3];
let mut iter = slice.array_windows();
@@ -463,9 +397,9 @@ slice, then the last chunk will not have length chunk_size.
See rchunks_exact for a variant of this iterator that returns chunks of always exactly
chunk_size elements, and chunks for the same iterator but starting at the beginning
of the slice.
let slice = ['l', 'o', 'r', 'e', 'm'];
let mut iter = slice.rchunks(2);
assert_eq!(iter.next().unwrap(), &['e', 'm']);
@@ -482,9 +416,9 @@ resulting code better than in the case of rchunks
See rchunks for a variant of this iterator that also returns the remainder as a smaller
chunk, and chunks_exact for the same iterator but starting at the beginning of the
slice.
let slice = ['l', 'o', 'r', 'e', 'm'];
let mut iter = slice.rchunks_exact(2);
assert_eq!(iter.next().unwrap(), &['e', 'm']);
@@ -497,7 +431,7 @@ of elements using the predicate to separate them.
The predicate is called on two elements following themselves,
it means the predicate is called on slice[0] and slice[1]
then on slice[1] and slice[2] and so on.
#![feature(slice_group_by)]
let slice = &[1, 1, 1, 3, 3, 2, 2, 2];
@@ -524,9 +458,9 @@ then on slice[1] and slice[2] and so on.
The first will contain all indices from [0, mid) (excluding
the index mid itself) and the second will contain all
indices from [mid, len) (excluding the index len itself).
let v = [1, 2, 3, 4, 5, 6];
{
@@ -551,11 +485,11 @@ indices from [mid, len) (excluding the index len itsel
the index mid itself) and the second will contain all
indices from [mid, len) (excluding the index len itself).
Calling this method with an out-of-bounds index is undefined behavior
even if the resulting reference is not used. The caller has to ensure that
0 <= mid <= self.len().
#![feature(slice_split_at_unchecked)]
let v = [1, 2, 3, 4, 5, 6];
@@ -581,9 +515,9 @@ even if the resulting reference is not used. The caller has to ensure that
The array will contain all indices from [0, N) (excluding
the index N itself) and the slice will contain all
indices from [N, len) (excluding the index len itself).
#![feature(split_array)]
let v = &[1, 2, 3, 4, 5, 6][..];
@@ -610,9 +544,9 @@ the end.
The slice will contain all indices from [0, len - N) (excluding
the index len - N itself) and the array will contain all
indices from [len - N, len) (excluding the index len itself).
let slice = [10, 40, 33, 20];
let mut iter = slice.split(|num| num % 3 == 0);
@@ -669,7 +603,7 @@ present between them:
F: FnMut(&T) -> bool,
Returns an iterator over subslices separated by elements that match
pred. The matched element is contained in the end of the previous
subslice as a terminator.
let slice = [10, 40, 33, 20];
let mut iter = slice.split_inclusive(|num| num % 3 == 0);
@@ -690,7 +624,7 @@ That slice will be the last item returned by the iterator.
F: FnMut(&T) -> bool,
Returns an iterator over subslices separated by elements that match
pred, starting at the end of the slice and working backwards.
The matched element is not contained in the subslices.
let slice = [11, 22, 33, 0, 44, 55];
let mut iter = slice.rsplit(|num| *num == 0);
@@ -713,7 +647,7 @@ slice will be the first (or last) item returned by the iterator.
not contained in the subslices.
The last element returned, if any, will contain the remainder of the
slice.
let v = &[10, 40, 30];
assert_eq!(v.strip_prefix(&[10]), Some(&[40, 30][..]));
assert_eq!(v.strip_prefix(&[10, 40]), Some(&[30][..]));
@@ -803,7 +737,7 @@ If prefix is empty, simply returns the original slice.
If the slice ends with suffix, returns the subslice before the suffix, wrapped in Some.
If suffix is empty, simply returns the original slice.
If the slice does not end with suffix, returns None.
let v = &[10, 40, 30];
assert_eq!(v.strip_suffix(&[30]), Some(&[10, 40][..]));
assert_eq!(v.strip_suffix(&[40, 30]), Some(&[10][..]));
@@ -821,7 +755,7 @@ If the value is not found then [Result::Err] is returned, containin
the index where a matching element could be inserted while maintaining
sorted order.
Looks up a series of four elements. The first is found, with a
uniquely determined position; the second and third are not
found; the fourth could match any position in [1, 4].
@@ -878,7 +812,7 @@ If the value is not found then [Result::Err] is returned, containin
the index where a matching element could be inserted while maintaining
sorted order.
Looks up a series of four elements. The first is found, with a
uniquely determined position; the second and third are not
found; the fourth could match any position in [1, 4].
@@ -913,7 +847,7 @@ If the value is not found then [Result::Err] is returned, containin
the index where a matching element could be inserted while maintaining
sorted order.
Looks up a series of four elements in a slice of pairs sorted by
their second elements. The first is found, with a uniquely
determined position; the second and third are not found; the
@@ -938,10 +872,10 @@ matter, such as a sanitizer attempting to find alignment bugs. Regular code runn
in a default (debug or release) execution will return a maximal middle part.
This method has no purpose when either input element T or output element U are
zero-sized and will return the original slice without splitting anything.
This method is essentially a transmute with respect to the elements in the returned
middle slice, so all the usual caveats pertaining to transmute::<T, U> also apply here.
This will panic if the size of the SIMD type is different from
LANES times that of the scalar.
At the time of writing, the trait restrictions on Simd<T, LANES> keeps
@@ -974,7 +908,7 @@ that from ever happening, as only power-of-two numbers of lanes are
supported. It’s possible that, in the future, those restrictions might
be lifted in a way that would make it possible to see panics from this
method for something like LANES == 3.
#![feature(portable_simd)]
use core::simd::SimdFloat;
@@ -1009,7 +943,7 @@ slice yields exactly zero or one element, true is returned.
Note that if Self::Item is only PartialOrd, but not Ord, the above definition
implies that this function returns false if any two consecutive items are not
comparable.
#![feature(is_sorted)]
let empty: [i32; 0] = [];
@@ -1029,7 +963,7 @@ function to determine the ordering of two elements. Apart from that, it’s equi
Instead of comparing the slice’s elements directly, this function compares the keys of the
elements, as determined by f. Apart from that, it’s equivalent to is_sorted; see its
documentation for more information.
#![feature(is_sorted)]
assert!(["c", "bb", "aaa"].is_sorted_by_key(|s| s.len()));
@@ -1045,7 +979,7 @@ For example, [7, 15, 3, 5, 4, 12, 6] is partitioned under the predi
If this slice is not partitioned, the returned result is unspecified and meaningless,
as this method performs a kind of binary search.
This panics if the length of the resulting slice would overflow a usize.
+
This is only possible when flattening a slice of arrays of zero-sized
+types, and thus tends to be irrelevant in practice. If
+size_of::<T>() > 0, this will never panic.
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/heapless/struct.IndexMap.html b/docs/doc/arduboy_rust/heapless/struct.IndexMap.html
index 9264902..c003332 100644
--- a/docs/doc/arduboy_rust/heapless/struct.IndexMap.html
+++ b/docs/doc/arduboy_rust/heapless/struct.IndexMap.html
@@ -1,4 +1,4 @@
-IndexMap in arduboy_rust::heapless - Rust
Note that you cannot use IndexMap directly, since it is generic around the hashing algorithm
in use. Pick a concrete instantiation like FnvIndexMap instead
or create your own.
@@ -250,11 +250,11 @@ and popping it off. This perturbs the postion of what used to be the las
S: BuildHasher + Default,
impl<'a, K, Q, V, S, const N: usize> Index<&'a Q> for IndexMap<K, V, S, N>where
@@ -265,9 +265,9 @@ and popping it off. This perturbs the postion of what used to be the las
Q: Eq + Hash + ?Sized,
S: BuildHasher,
impl<K, V, S, S2, const N: usize, const N2: usize> PartialEq<IndexMap<K, V, S2, N2>> for IndexMap<K, V, S, N>where
K: Eq + Hash,
@@ -302,5 +302,5 @@ sufficient, and should not be overridden without very good reason.
That is, this conversion is whatever the implementation of
[From]<T> for U chooses to do.
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/heapless/struct.IndexSet.html b/docs/doc/arduboy_rust/heapless/struct.IndexSet.html
index 6b89699..b7f48d3 100644
--- a/docs/doc/arduboy_rust/heapless/struct.IndexSet.html
+++ b/docs/doc/arduboy_rust/heapless/struct.IndexSet.html
@@ -1,4 +1,4 @@
-IndexSet in arduboy_rust::heapless - Rust
Note that you cannot use IndexSet directly, since it is generic around the hashing algorithm
in use. Pick a concrete instantiation like FnvIndexSet instead
or create your own.
impl<'a, T, S, const N: usize> IntoIterator for &'a IndexSet<T, S, N>where
@@ -292,5 +292,5 @@ sufficient, and should not be overridden without very good reason.
That is, this conversion is whatever the implementation of
[From]<T> for U chooses to do.
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/heapless/struct.LinearMap.html b/docs/doc/arduboy_rust/heapless/struct.LinearMap.html
index 07a1054..0f25a7c 100644
--- a/docs/doc/arduboy_rust/heapless/struct.LinearMap.html
+++ b/docs/doc/arduboy_rust/heapless/struct.LinearMap.html
@@ -1,4 +1,4 @@
-LinearMap in arduboy_rust::heapless - Rust
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/heapless/struct.OccupiedEntry.html b/docs/doc/arduboy_rust/heapless/struct.OccupiedEntry.html
index 1f41815..b97365c 100644
--- a/docs/doc/arduboy_rust/heapless/struct.OccupiedEntry.html
+++ b/docs/doc/arduboy_rust/heapless/struct.OccupiedEntry.html
@@ -1,4 +1,4 @@
-OccupiedEntry in arduboy_rust::heapless - Rust
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/heapless/struct.OldestOrdered.html b/docs/doc/arduboy_rust/heapless/struct.OldestOrdered.html
index 51d68ea..1dbd35c 100644
--- a/docs/doc/arduboy_rust/heapless/struct.OldestOrdered.html
+++ b/docs/doc/arduboy_rust/heapless/struct.OldestOrdered.html
@@ -1,4 +1,4 @@
-OldestOrdered in arduboy_rust::heapless - Rust
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/heapless/struct.String.html b/docs/doc/arduboy_rust/heapless/struct.String.html
index 0b133ce..8ed26d9 100644
--- a/docs/doc/arduboy_rust/heapless/struct.String.html
+++ b/docs/doc/arduboy_rust/heapless/struct.String.html
@@ -1,4 +1,4 @@
-String in arduboy_rust::heapless - Rust
@@ -566,22 +566,26 @@ the original string slice, separated by any amount of ASCII whitespace.
Lines are split at line endings that are either newlines (\n) or
sequences of a carriage return followed by a line feed (\r\n).
Line terminators are not included in the lines returned by the iterator.
+
Note that any carriage return (\r) not immediately followed by a
+line feed (\n) does not split a line. These carriage returns are
+thereby included in the produced lines.
The final line ending is optional. A string that ends with a final line
ending will return the same lines as an otherwise identical string
without a final line ending.
let text = "foo\r\nbar\n\nbaz\r";
let mut lines = text.lines();
assert_eq!(Some("foo"), lines.next());
assert_eq!(Some("bar"), lines.next());
assert_eq!(Some(""), lines.next());
-assert_eq!(Some("baz"), lines.next());
+// Trailing carriage return is included in the last line
+assert_eq!(Some("baz\r"), lines.next());
assert_eq!(None, lines.next());
-
The final line ending isn’t required:
+
The final line does not require any ending:
let text = "foo\nbar\n\r\nbaz";
let mut lines = text.lines();
@@ -1335,9 +1339,9 @@ escaped.
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/heapless/struct.VacantEntry.html b/docs/doc/arduboy_rust/heapless/struct.VacantEntry.html
index 82844a1..a541260 100644
--- a/docs/doc/arduboy_rust/heapless/struct.VacantEntry.html
+++ b/docs/doc/arduboy_rust/heapless/struct.VacantEntry.html
@@ -1,4 +1,4 @@
-VacantEntry in arduboy_rust::heapless - Rust
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/heapless/struct.Vec.html b/docs/doc/arduboy_rust/heapless/struct.Vec.html
index 3367040..cab9b04 100644
--- a/docs/doc/arduboy_rust/heapless/struct.Vec.html
+++ b/docs/doc/arduboy_rust/heapless/struct.Vec.html
@@ -1,4 +1,4 @@
-Vec in arduboy_rust::heapless - Rust
This panics if the length of the resulting slice would overflow a usize.
-
This is only possible when flattening a slice of arrays of zero-sized
-types, and thus tends to be irrelevant in practice. If
-size_of::<T>() > 0, this will never panic.
This panics if the length of the resulting slice would overflow a usize.
-
This is only possible when flattening a slice of arrays of zero-sized
-types, and thus tends to be irrelevant in practice. If
-size_of::<T>() > 0, this will never panic.
#![feature(slice_first_last_chunk)]
let x = &[0, 1, 2];
@@ -489,7 +395,7 @@ or None if it has fewer than N elements.
&mut self
) -> Option<(&mut [T; N], &mut [T])>
🔬This is a nightly-only experimental API. (slice_first_last_chunk)
Returns a mutable reference to the first N elements of the slice and the remainder,
or None if it has fewer than N elements.
#![feature(slice_first_last_chunk)]
let u = [10, 40, 30];
@@ -538,7 +444,7 @@ or None if it has fewer than N elements.
let w: &[i32] = &[];
assert_eq!(Some(&[]), w.last_chunk::<0>());
let v = [10, 40, 30];
assert_eq!(Some(&40), v.get(1));
assert_eq!(Some(&[10, 40][..]), v.get(0..2));
@@ -569,7 +475,7 @@ or None if out of bounds.
) -> Option<&mut <I as SliceIndex<[T]>>::Output>where
I: SliceIndex<[T]>,
Returns a mutable reference to an element or subslice depending on the
type of index (see get) or None if the index is out of bounds.
let x = &mut [1, 2, 4];
unsafe {
@@ -618,7 +524,7 @@ is never written to (except inside an UnsafeCell) using this pointe
derived from it. If you need to mutate the contents of the slice, use as_mut_ptr.
Modifying the container referenced by this slice may cause its buffer
to be reallocated, which would also make any pointers to it invalid.
let x = &[1, 2, 4];
let x_ptr = x.as_ptr();
@@ -632,7 +538,7 @@ to be reallocated, which would also make any pointers to it invalid.
function returns, or else it will end up pointing to garbage.
Modifying the container referenced by this slice may cause its buffer
to be reallocated, which would also make any pointers to it invalid.
#![feature(slice_swap_unchecked)]
let mut v = ["a", "b", "c", "d"];
@@ -704,13 +610,13 @@ The caller has to ensure that a < self.len() and b < se
unsafe { v.swap_unchecked(1, 3) };
assert!(v == ["a", "d", "c", "b"]);
Returns an iterator over all contiguous windows of length
size. The windows overlap. If the slice is shorter than
size, the iterator returns no values.
let slice = ['r', 'u', 's', 't'];
let mut iter = slice.windows(2);
assert_eq!(iter.next().unwrap(), &['r', 'u']);
@@ -764,9 +670,9 @@ slice, then the last chunk will not have length chunk_size.
See chunks_exact for a variant of this iterator that returns chunks of always exactly
chunk_size elements, and rchunks for the same iterator but starting at the end of the
slice.
let slice = ['l', 'o', 'r', 'e', 'm'];
let mut iter = slice.chunks(2);
assert_eq!(iter.next().unwrap(), &['l', 'o']);
@@ -780,9 +686,9 @@ length of the slice, then the last chunk will not have length chunk_size
See chunks_exact_mut for a variant of this iterator that returns chunks of always
exactly chunk_size elements, and rchunks_mut for the same iterator but starting at
the end of the slice.
let v = &mut [0, 0, 0, 0, 0];
let mut count = 1;
@@ -802,9 +708,9 @@ from the remainder function of the iterator.
resulting code better than in the case of chunks.
See chunks for a variant of this iterator that also returns the remainder as a smaller
chunk, and rchunks_exact for the same iterator but starting at the end of the slice.
let slice = ['l', 'o', 'r', 'e', 'm'];
let mut iter = slice.chunks_exact(2);
assert_eq!(iter.next().unwrap(), &['l', 'o']);
@@ -821,9 +727,9 @@ resulting code better than in the case of chun
See chunks_mut for a variant of this iterator that also returns the remainder as a
smaller chunk, and rchunks_exact_mut for the same iterator but starting at the end of
the slice.
#![feature(slice_as_chunks)]
let slice = ['l', 'o', 'r', 'e', 'm'];
let (remainder, chunks) = slice.as_rchunks();
@@ -896,10 +802,10 @@ beginning of the slice.
length of the slice, then the last up to N-1 elements will be omitted and can be
retrieved from the remainder function of the iterator.
This method is the const generic equivalent of chunks_exact.
#![feature(slice_as_chunks)]
let v = &mut [0, 0, 0, 0, 0];
let mut count = 1;
@@ -976,10 +882,10 @@ beginning of the slice.
the length of the slice, then the last up to N-1 elements will be omitted and
can be retrieved from the into_remainder function of the iterator.
This method is the const generic equivalent of chunks_exact_mut.
#![feature(array_chunks)]
let v = &mut [0, 0, 0, 0, 0];
let mut count = 1;
@@ -993,10 +899,10 @@ error before this method gets stabilized.
starting at the beginning of the slice.
#![feature(array_windows)]
let slice = [0, 1, 2, 3];
let mut iter = slice.array_windows();
@@ -1011,9 +917,9 @@ slice, then the last chunk will not have length chunk_size.
See rchunks_exact for a variant of this iterator that returns chunks of always exactly
chunk_size elements, and chunks for the same iterator but starting at the beginning
of the slice.
let slice = ['l', 'o', 'r', 'e', 'm'];
let mut iter = slice.rchunks(2);
assert_eq!(iter.next().unwrap(), &['e', 'm']);
@@ -1027,9 +933,9 @@ length of the slice, then the last chunk will not have length chunk_size
See rchunks_exact_mut for a variant of this iterator that returns chunks of always
exactly chunk_size elements, and chunks_mut for the same iterator but starting at the
beginning of the slice.
let v = &mut [0, 0, 0, 0, 0];
let mut count = 1;
@@ -1050,9 +956,9 @@ resulting code better than in the case of rchunks
See rchunks for a variant of this iterator that also returns the remainder as a smaller
chunk, and chunks_exact for the same iterator but starting at the beginning of the
slice.
let slice = ['l', 'o', 'r', 'e', 'm'];
let mut iter = slice.rchunks_exact(2);
assert_eq!(iter.next().unwrap(), &['e', 'm']);
@@ -1069,9 +975,9 @@ resulting code better than in the case of chun
See rchunks_mut for a variant of this iterator that also returns the remainder as a
smaller chunk, and chunks_exact_mut for the same iterator but starting at the beginning
of the slice.
let v = &mut [0, 0, 0, 0, 0];
let mut count = 1;
@@ -1088,7 +994,7 @@ of elements using the predicate to separate them.
The predicate is called on two elements following themselves,
it means the predicate is called on slice[0] and slice[1]
then on slice[1] and slice[2] and so on.
#![feature(slice_group_by)]
let slice = &[1, 1, 1, 3, 3, 2, 2, 2];
@@ -1117,7 +1023,7 @@ runs of elements using the predicate to separate them.
The predicate is called on two elements following themselves,
it means the predicate is called on slice[0] and slice[1]
then on slice[1] and slice[2] and so on.
#![feature(slice_group_by)]
let slice = &mut [1, 1, 1, 3, 3, 2, 2, 2];
@@ -1144,9 +1050,9 @@ then on slice[1] and slice[2] and so on.
The first will contain all indices from [0, mid) (excluding
the index mid itself) and the second will contain all
indices from [mid, len) (excluding the index len itself).
let v = [1, 2, 3, 4, 5, 6];
{
@@ -1170,9 +1076,9 @@ indices from [mid, len) (excluding the index len itsel
The first will contain all indices from [0, mid) (excluding
the index mid itself) and the second will contain all
indices from [mid, len) (excluding the index len itself).