\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy2/constant.FONT_SIZE.html b/docs/doc/arduboy_rust/arduboy2/constant.FONT_SIZE.html
index 13366a4..9e6d57d 100644
--- a/docs/doc/arduboy_rust/arduboy2/constant.FONT_SIZE.html
+++ b/docs/doc/arduboy_rust/arduboy2/constant.FONT_SIZE.html
@@ -1,3 +1,3 @@
-FONT_SIZE in arduboy_rust::arduboy2 - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy2/constant.HEIGHT.html b/docs/doc/arduboy_rust/arduboy2/constant.HEIGHT.html
index f4c5afc..6920f2e 100644
--- a/docs/doc/arduboy_rust/arduboy2/constant.HEIGHT.html
+++ b/docs/doc/arduboy_rust/arduboy2/constant.HEIGHT.html
@@ -1,3 +1,3 @@
-HEIGHT in arduboy_rust::arduboy2 - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy2/constant.WIDTH.html b/docs/doc/arduboy_rust/arduboy2/constant.WIDTH.html
index cfd262b..e0713eb 100644
--- a/docs/doc/arduboy_rust/arduboy2/constant.WIDTH.html
+++ b/docs/doc/arduboy_rust/arduboy2/constant.WIDTH.html
@@ -1,3 +1,3 @@
-WIDTH in arduboy_rust::arduboy2 - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy2/enum.Color.html b/docs/doc/arduboy_rust/arduboy2/enum.Color.html
index 2a79556..42856f2 100644
--- a/docs/doc/arduboy_rust/arduboy2/enum.Color.html
+++ b/docs/doc/arduboy_rust/arduboy2/enum.Color.html
@@ -1,4 +1,4 @@
-Color in arduboy_rust::arduboy2 - Rust
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 8e789cb..b62d7de 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 6dd4afd..64f9112 100644
--- a/docs/doc/arduboy_rust/arduboy2/struct.Arduboy2.html
+++ b/docs/doc/arduboy_rust/arduboy2/struct.Arduboy2.html
@@ -1,5 +1,5 @@
-Arduboy2 in arduboy_rust::arduboy2 - Rust
Initialize the hardware, display the boot logo, provide boot utilities, etc.
@@ -278,7 +278,32 @@ true if the first rectangle is intersecting the second.
Set the brightness of one of the RGB LEDs without affecting the others.
+
Parameters
+
+
color The name of the LED to set. The value given should be one of RED_LED, GREEN_LED or BLUE_LED.
+
val The brightness value for the LED, from 0 to 255.
+
+
Note
+
+
In order to use this function, the 3 parameter version must first be called at least once, in order to initialize the hardware.
+
+
This 2 parameter version of the function will set the brightness of a single LED within the RGB LED without affecting the current brightness of the other two. See the description of the 3 parameter version of this function for more details on the RGB LED.
The RGB LED is actually individual red, green and blue LEDs placed very close together in a single package. By setting the brightness of each LED, the RGB LED can show various colors and intensities. The brightness of each LED can be set to a value from 0 (fully off) to 255 (fully on).
+
Note
+
+
Certain libraries that take control of the hardware timers may interfere with the ability of this function to properly control the RGB LED. ArduboyPlaytune is one such library known to do this. The digital_write_rgb() function will still work properly in this case.
+
+
Note
+
+
Many of the Kickstarter Arduboys were accidentally shipped with the RGB LED installed incorrectly. For these units, the green LED cannot be lit. As long as the green led is set to off, setting the red LED will actually control the blue LED and setting the blue LED will actually control the red LED. If the green LED is turned fully on, none of the LEDs will light.
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 dd76069..d8b06b2 100644
--- a/docs/doc/arduboy_rust/arduboy2/struct.Point.html
+++ b/docs/doc/arduboy_rust/arduboy2/struct.Point.html
@@ -1,4 +1,4 @@
-Point in arduboy_rust::arduboy2 - Rust
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 935ae34..7523874 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 f104ecd..9759113 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0.html
@@ -1 +1 @@
-NOTE_A0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0H.html
index fc839da..d8693ee 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A0H.html
@@ -1 +1 @@
-NOTE_A0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1.html
index c6a7b4a..8df2add 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1.html
@@ -1 +1 @@
-NOTE_A1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1H.html
index aa2c76c..fff5653 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A1H.html
@@ -1 +1 @@
-NOTE_A1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2.html
index 00070dc..1104cf7 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2.html
@@ -1 +1 @@
-NOTE_A2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2H.html
index 94c5ece..160f7dc 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A2H.html
@@ -1 +1 @@
-NOTE_A2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3.html
index b80f96c..b906d67 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3.html
@@ -1 +1 @@
-NOTE_A3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3H.html
index a3e77f8..e22b7e7 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A3H.html
@@ -1 +1 @@
-NOTE_A3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4.html
index 58c4f9d..96c8214 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4.html
@@ -1 +1 @@
-NOTE_A4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4H.html
index 21da961..c846711 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A4H.html
@@ -1 +1 @@
-NOTE_A4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5.html
index 794bc08..c58cd62 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5.html
@@ -1 +1 @@
-NOTE_A5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5H.html
index bc998c3..0437576 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A5H.html
@@ -1 +1 @@
-NOTE_A5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6.html
index 53fac10..6015732 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6.html
@@ -1 +1 @@
-NOTE_A6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6H.html
index 5425815..e75be26 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A6H.html
@@ -1 +1 @@
-NOTE_A6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7.html
index f4aee5b..84f2c84 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7.html
@@ -1 +1 @@
-NOTE_A7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7H.html
index 52c8e2b..391aaa9 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A7H.html
@@ -1 +1 @@
-NOTE_A7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8.html
index cd53e40..e6a6188 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8.html
@@ -1 +1 @@
-NOTE_A8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8H.html
index b0a5e99..ef46b28 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A8H.html
@@ -1 +1 @@
-NOTE_A8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9.html
index daac4ac..1f8b019 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9.html
@@ -1 +1 @@
-NOTE_A9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9H.html
index 07b9e79..b2c815e 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_A9H.html
@@ -1 +1 @@
-NOTE_A9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0.html
index a08d7ff..3623528 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0.html
@@ -1 +1 @@
-NOTE_AS0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0H.html
index 6401bcf..d251da1 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS0H.html
@@ -1 +1 @@
-NOTE_AS0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1.html
index f600ea9..4dc54c8 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1.html
@@ -1 +1 @@
-NOTE_AS1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1H.html
index 5d85ff6..abe1a9d 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS1H.html
@@ -1 +1 @@
-NOTE_AS1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2.html
index 1f3feb6..dae1168 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2.html
@@ -1 +1 @@
-NOTE_AS2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2H.html
index ce55bc7..cf3e1ba 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS2H.html
@@ -1 +1 @@
-NOTE_AS2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3.html
index dc1fe7f..5b9a233 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3.html
@@ -1 +1 @@
-NOTE_AS3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3H.html
index adcea2e..a09ab1c 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS3H.html
@@ -1 +1 @@
-NOTE_AS3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4.html
index 3facde0..44ee870 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4.html
@@ -1 +1 @@
-NOTE_AS4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4H.html
index d9a78f5..e067619 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS4H.html
@@ -1 +1 @@
-NOTE_AS4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5.html
index 2546806..d2e43d9 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5.html
@@ -1 +1 @@
-NOTE_AS5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5H.html
index f055361..425009c 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS5H.html
@@ -1 +1 @@
-NOTE_AS5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6.html
index 38e8f69..bd67ea6 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6.html
@@ -1 +1 @@
-NOTE_AS6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6H.html
index c5176b8..90569a2 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS6H.html
@@ -1 +1 @@
-NOTE_AS6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7.html
index 9e936fa..9182273 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7.html
@@ -1 +1 @@
-NOTE_AS7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7H.html
index 228c1e8..334226c 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS7H.html
@@ -1 +1 @@
-NOTE_AS7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8.html
index 8666de6..d38ca67 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8.html
@@ -1 +1 @@
-NOTE_AS8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8H.html
index cf82fd4..2b25925 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS8H.html
@@ -1 +1 @@
-NOTE_AS8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9.html
index 93ba4cb..16294b3 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9.html
@@ -1 +1 @@
-NOTE_AS9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9H.html
index fd6eb2a..c97aebc 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_AS9H.html
@@ -1 +1 @@
-NOTE_AS9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0.html
index fe16856..83306a5 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0.html
@@ -1 +1 @@
-NOTE_B0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0H.html
index c83591d..1308304 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B0H.html
@@ -1 +1 @@
-NOTE_B0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1.html
index 29e5d69..fe0fce8 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1.html
@@ -1 +1 @@
-NOTE_B1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1H.html
index 5c487c1..d61b8c9 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B1H.html
@@ -1 +1 @@
-NOTE_B1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2.html
index 3fb7f5e..b12c847 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2.html
@@ -1 +1 @@
-NOTE_B2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2H.html
index 2d827a3..d755537 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B2H.html
@@ -1 +1 @@
-NOTE_B2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3.html
index b289c50..fc26ea3 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3.html
@@ -1 +1 @@
-NOTE_B3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3H.html
index 06f4742..1b8492d 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B3H.html
@@ -1 +1 @@
-NOTE_B3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4.html
index 6184ce2..f146d19 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4.html
@@ -1 +1 @@
-NOTE_B4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4H.html
index e2b8ab7..ef25713 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B4H.html
@@ -1 +1 @@
-NOTE_B4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5.html
index 2aab224..8c0d9aa 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5.html
@@ -1 +1 @@
-NOTE_B5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5H.html
index 51aab53..e208297 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B5H.html
@@ -1 +1 @@
-NOTE_B5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6.html
index 1a74b68..dc9fd2e 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6.html
@@ -1 +1 @@
-NOTE_B6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6H.html
index d7d7d6d..09674b1 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B6H.html
@@ -1 +1 @@
-NOTE_B6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7.html
index e4761d3..77186b0 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7.html
@@ -1 +1 @@
-NOTE_B7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7H.html
index 9b28f50..8d8df60 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B7H.html
@@ -1 +1 @@
-NOTE_B7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8.html
index 61f4e15..97fbb2c 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8.html
@@ -1 +1 @@
-NOTE_B8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8H.html
index 3daf17d..6a08323 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B8H.html
@@ -1 +1 @@
-NOTE_B8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9.html
index e8d3668..100c29a 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9.html
@@ -1 +1 @@
-NOTE_B9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9H.html
index 61968e3..8948588 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_B9H.html
@@ -1 +1 @@
-NOTE_B9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0.html
index e19f9aa..fa20f3c 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0.html
@@ -1 +1 @@
-NOTE_C0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0H.html
index 1bc117e..c7f7f94 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C0H.html
@@ -1 +1 @@
-NOTE_C0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1.html
index 18df2ba..be08d46 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1.html
@@ -1 +1 @@
-NOTE_C1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1H.html
index f384760..d915edf 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C1H.html
@@ -1 +1 @@
-NOTE_C1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2.html
index 6b94054..805ee00 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2.html
@@ -1 +1 @@
-NOTE_C2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2H.html
index 7b9c1fe..c26a4a1 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C2H.html
@@ -1 +1 @@
-NOTE_C2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3.html
index a194bd5..4cff7e2 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3.html
@@ -1 +1 @@
-NOTE_C3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3H.html
index dbf02b9..85e0933 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C3H.html
@@ -1 +1 @@
-NOTE_C3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4.html
index 09396c1..76cc2a6 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4.html
@@ -1 +1 @@
-NOTE_C4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4H.html
index 9341d43..030b516 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C4H.html
@@ -1 +1 @@
-NOTE_C4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5.html
index 5c1e940..61e973b 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5.html
@@ -1 +1 @@
-NOTE_C5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5H.html
index ecbb650..b799717 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C5H.html
@@ -1 +1 @@
-NOTE_C5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6.html
index c23f710..c2669b0 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6.html
@@ -1 +1 @@
-NOTE_C6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6H.html
index 0c1f0ec..a732ada 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C6H.html
@@ -1 +1 @@
-NOTE_C6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7.html
index ceb4aa5..c964e4f 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7.html
@@ -1 +1 @@
-NOTE_C7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7H.html
index 0328cd6..850fcdd 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C7H.html
@@ -1 +1 @@
-NOTE_C7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8.html
index a5564f5..9009ee0 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8.html
@@ -1 +1 @@
-NOTE_C8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8H.html
index 5cc2be7..90520dd 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C8H.html
@@ -1 +1 @@
-NOTE_C8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9.html
index dd924b8..7870816 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9.html
@@ -1 +1 @@
-NOTE_C9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9H.html
index 4338b49..6868e5e 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_C9H.html
@@ -1 +1 @@
-NOTE_C9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0.html
index e8e323b..5ecdee2 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0.html
@@ -1 +1 @@
-NOTE_CS0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0H.html
index 03213b2..ddeb4ec 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS0H.html
@@ -1 +1 @@
-NOTE_CS0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1.html
index 646629b..cbe5298 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1.html
@@ -1 +1 @@
-NOTE_CS1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1H.html
index bbf732b..a541fb0 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS1H.html
@@ -1 +1 @@
-NOTE_CS1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2.html
index a8b35fb..2676952 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2.html
@@ -1 +1 @@
-NOTE_CS2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2H.html
index eb6965b..ddd9ffa 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS2H.html
@@ -1 +1 @@
-NOTE_CS2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3.html
index 57fec1b..95a2b00 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3.html
@@ -1 +1 @@
-NOTE_CS3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3H.html
index f63db15..8b546a8 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS3H.html
@@ -1 +1 @@
-NOTE_CS3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4.html
index f1e4256..0a7c599 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4.html
@@ -1 +1 @@
-NOTE_CS4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4H.html
index f0505bb..6f07af0 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS4H.html
@@ -1 +1 @@
-NOTE_CS4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5.html
index 584491b..d2e30cc 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5.html
@@ -1 +1 @@
-NOTE_CS5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5H.html
index e18821c..392b189 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS5H.html
@@ -1 +1 @@
-NOTE_CS5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6.html
index c5efc9f..611e698 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6.html
@@ -1 +1 @@
-NOTE_CS6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6H.html
index e8a5428..ef1f129 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS6H.html
@@ -1 +1 @@
-NOTE_CS6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7.html
index 9947340..3d18f62 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7.html
@@ -1 +1 @@
-NOTE_CS7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7H.html
index 199d69e..03b3d69 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS7H.html
@@ -1 +1 @@
-NOTE_CS7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8.html
index 35cf6a1..cc86131 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8.html
@@ -1 +1 @@
-NOTE_CS8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8H.html
index cc9f260..9e19b43 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS8H.html
@@ -1 +1 @@
-NOTE_CS8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9.html
index d40743e..8b79131 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9.html
@@ -1 +1 @@
-NOTE_CS9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9H.html
index 8d29868..01a3292 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_CS9H.html
@@ -1 +1 @@
-NOTE_CS9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0.html
index 3e22e45..b1e0d1e 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0.html
@@ -1 +1 @@
-NOTE_D0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0H.html
index a6458ce..3f7915c 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D0H.html
@@ -1 +1 @@
-NOTE_D0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1.html
index db09978..202f165 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1.html
@@ -1 +1 @@
-NOTE_D1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1H.html
index 92ebbc2..dbf40cb 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D1H.html
@@ -1 +1 @@
-NOTE_D1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2.html
index 80e1886..617e347 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2.html
@@ -1 +1 @@
-NOTE_D2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2H.html
index 53df6d8..efbb36a 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D2H.html
@@ -1 +1 @@
-NOTE_D2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3.html
index 613a24e..40037b7 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3.html
@@ -1 +1 @@
-NOTE_D3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3H.html
index 6c94718..cfb80d5 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D3H.html
@@ -1 +1 @@
-NOTE_D3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4.html
index 400b608..45d95df 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4.html
@@ -1 +1 @@
-NOTE_D4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4H.html
index 6dd263a..d4167db 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D4H.html
@@ -1 +1 @@
-NOTE_D4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5.html
index a77ae15..27f69d2 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5.html
@@ -1 +1 @@
-NOTE_D5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5H.html
index 8b17e00..b898d97 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D5H.html
@@ -1 +1 @@
-NOTE_D5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6.html
index 0ab8103..087c6d3 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6.html
@@ -1 +1 @@
-NOTE_D6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6H.html
index d890d46..477695f 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D6H.html
@@ -1 +1 @@
-NOTE_D6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7.html
index b8e7c06..cecea86 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7.html
@@ -1 +1 @@
-NOTE_D7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7H.html
index 5233e8a..bdd3a7c 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D7H.html
@@ -1 +1 @@
-NOTE_D7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8.html
index 39689e8..6bdb7a7 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8.html
@@ -1 +1 @@
-NOTE_D8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8H.html
index 849bf89..12806fd 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D8H.html
@@ -1 +1 @@
-NOTE_D8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9.html
index e09b5b6..edf2bba 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9.html
@@ -1 +1 @@
-NOTE_D9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9H.html
index 0a96e8f..ede0127 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_D9H.html
@@ -1 +1 @@
-NOTE_D9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0.html
index 9c8f0f1..4ddccf7 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0.html
@@ -1 +1 @@
-NOTE_DS0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0H.html
index 7b1ea7f..b307eba 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS0H.html
@@ -1 +1 @@
-NOTE_DS0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1.html
index 41e370a..2ba6af8 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1.html
@@ -1 +1 @@
-NOTE_DS1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1H.html
index 06c66a9..db78ef5 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS1H.html
@@ -1 +1 @@
-NOTE_DS1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2.html
index 3f41fb0..95e0659 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2.html
@@ -1 +1 @@
-NOTE_DS2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2H.html
index 26ae804..0d45ed0 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS2H.html
@@ -1 +1 @@
-NOTE_DS2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3.html
index 5b09a0a..0b0be35 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3.html
@@ -1 +1 @@
-NOTE_DS3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3H.html
index e0c04e8..0623820 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS3H.html
@@ -1 +1 @@
-NOTE_DS3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4.html
index 9c57365..d3ad7b2 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4.html
@@ -1 +1 @@
-NOTE_DS4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4H.html
index e494e31..a859d4d 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS4H.html
@@ -1 +1 @@
-NOTE_DS4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5.html
index 9352858..1320e27 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5.html
@@ -1 +1 @@
-NOTE_DS5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5H.html
index 9fd72b5..6b938e8 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS5H.html
@@ -1 +1 @@
-NOTE_DS5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6.html
index 1b1fe90..f8b926e 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6.html
@@ -1 +1 @@
-NOTE_DS6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6H.html
index c5a062e..7531513 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS6H.html
@@ -1 +1 @@
-NOTE_DS6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7.html
index 1de6d67..2a868bd 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7.html
@@ -1 +1 @@
-NOTE_DS7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7H.html
index 85c9aa9..44a6b78 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS7H.html
@@ -1 +1 @@
-NOTE_DS7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8.html
index c082962..7dfcc0c 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8.html
@@ -1 +1 @@
-NOTE_DS8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8H.html
index 4312155..f301c39 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS8H.html
@@ -1 +1 @@
-NOTE_DS8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9.html
index 3d3328d..311341e 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9.html
@@ -1 +1 @@
-NOTE_DS9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9H.html
index 55ad90f..cb02127 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_DS9H.html
@@ -1 +1 @@
-NOTE_DS9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0.html
index f53fdd2..30f0659 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0.html
@@ -1 +1 @@
-NOTE_E0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0H.html
index 8605c36..ae14332 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E0H.html
@@ -1 +1 @@
-NOTE_E0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1.html
index 7642243..598b7fa 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1.html
@@ -1 +1 @@
-NOTE_E1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1H.html
index 01acfef..8c1d18e 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E1H.html
@@ -1 +1 @@
-NOTE_E1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2.html
index 9fe85ac..efcf8e7 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2.html
@@ -1 +1 @@
-NOTE_E2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2H.html
index 037b232..c7ef21b 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E2H.html
@@ -1 +1 @@
-NOTE_E2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3.html
index 1974db9..62847bb 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3.html
@@ -1 +1 @@
-NOTE_E3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3H.html
index 6ae55c0..e8ab3c8 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E3H.html
@@ -1 +1 @@
-NOTE_E3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4.html
index 8701c76..765e2e7 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4.html
@@ -1 +1 @@
-NOTE_E4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4H.html
index 7905cf3..0b53b7f 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E4H.html
@@ -1 +1 @@
-NOTE_E4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5.html
index 0d2bfe6..877c1ad 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5.html
@@ -1 +1 @@
-NOTE_E5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5H.html
index 2abdc13..8ed7e55 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E5H.html
@@ -1 +1 @@
-NOTE_E5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6.html
index 058d147..fb10dc2 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6.html
@@ -1 +1 @@
-NOTE_E6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6H.html
index 655549c..e04f4a4 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E6H.html
@@ -1 +1 @@
-NOTE_E6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7.html
index f4d2f8d..ce32808 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7.html
@@ -1 +1 @@
-NOTE_E7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7H.html
index c691131..1475801 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E7H.html
@@ -1 +1 @@
-NOTE_E7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8.html
index 2d202fd..017eea7 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8.html
@@ -1 +1 @@
-NOTE_E8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8H.html
index fc166f6..0f787db 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E8H.html
@@ -1 +1 @@
-NOTE_E8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9.html
index ce0b174..79cbd54 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9.html
@@ -1 +1 @@
-NOTE_E9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9H.html
index 80dd783..b201f5f 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_E9H.html
@@ -1 +1 @@
-NOTE_E9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0.html
index bb655e7..e2bc74b 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0.html
@@ -1 +1 @@
-NOTE_F0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0H.html
index a6315c5..3cec9bd 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F0H.html
@@ -1 +1 @@
-NOTE_F0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1.html
index f6799ee..e53e540 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1.html
@@ -1 +1 @@
-NOTE_F1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1H.html
index 0847e01..88acde6 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F1H.html
@@ -1 +1 @@
-NOTE_F1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2.html
index 38f3f81..3b6347f 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2.html
@@ -1 +1 @@
-NOTE_F2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2H.html
index 3f83bf5..72962eb 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F2H.html
@@ -1 +1 @@
-NOTE_F2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3.html
index 5d73b6c..1a7d4ff 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3.html
@@ -1 +1 @@
-NOTE_F3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3H.html
index d6e018c..618dbd3 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F3H.html
@@ -1 +1 @@
-NOTE_F3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4.html
index cf6c271..88c1588 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4.html
@@ -1 +1 @@
-NOTE_F4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4H.html
index 52bd23b..2cb1b18 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F4H.html
@@ -1 +1 @@
-NOTE_F4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5.html
index 8985024..8e43495 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5.html
@@ -1 +1 @@
-NOTE_F5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5H.html
index b8e0946..15c48f8 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F5H.html
@@ -1 +1 @@
-NOTE_F5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6.html
index 19cf131..6f5090d 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6.html
@@ -1 +1 @@
-NOTE_F6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6H.html
index 3867ee5..1f9cead 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F6H.html
@@ -1 +1 @@
-NOTE_F6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7.html
index fd27b2b..5692d07 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7.html
@@ -1 +1 @@
-NOTE_F7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7H.html
index 2720376..5c2fb96 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F7H.html
@@ -1 +1 @@
-NOTE_F7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8.html
index 5ab800b..d708792 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8.html
@@ -1 +1 @@
-NOTE_F8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8H.html
index ff264ce..eb44fb1 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F8H.html
@@ -1 +1 @@
-NOTE_F8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9.html
index 22efb8e..097e4eb 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9.html
@@ -1 +1 @@
-NOTE_F9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9H.html
index 66b59a6..2d47c65 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_F9H.html
@@ -1 +1 @@
-NOTE_F9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0.html
index 578792d..4cffc7b 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0.html
@@ -1 +1 @@
-NOTE_FS0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0H.html
index 091bd19..d577516 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS0H.html
@@ -1 +1 @@
-NOTE_FS0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1.html
index dad3ce4..c5fda18 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1.html
@@ -1 +1 @@
-NOTE_FS1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1H.html
index 5c17060..e97740c 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS1H.html
@@ -1 +1 @@
-NOTE_FS1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2.html
index bb56999..6eae83c 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2.html
@@ -1 +1 @@
-NOTE_FS2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2H.html
index b954be5..72095e2 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS2H.html
@@ -1 +1 @@
-NOTE_FS2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3.html
index 81f9895..6eef8f1 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3.html
@@ -1 +1 @@
-NOTE_FS3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3H.html
index 29b158c..db63637 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS3H.html
@@ -1 +1 @@
-NOTE_FS3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4.html
index 81cd167..815e495 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4.html
@@ -1 +1 @@
-NOTE_FS4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4H.html
index 0878c93..5a2e68b 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS4H.html
@@ -1 +1 @@
-NOTE_FS4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5.html
index 16076c6..035d990 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5.html
@@ -1 +1 @@
-NOTE_FS5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5H.html
index f0ed8d9..1326e47 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS5H.html
@@ -1 +1 @@
-NOTE_FS5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6.html
index b481722..38733ca 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6.html
@@ -1 +1 @@
-NOTE_FS6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6H.html
index 6b92fb3..7b68a89 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS6H.html
@@ -1 +1 @@
-NOTE_FS6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7.html
index c0861b5..f72a0b4 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7.html
@@ -1 +1 @@
-NOTE_FS7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7H.html
index c271a09..35b3a31 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS7H.html
@@ -1 +1 @@
-NOTE_FS7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8.html
index a283532..16ad18d 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8.html
@@ -1 +1 @@
-NOTE_FS8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8H.html
index 7504723..acf8f56 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS8H.html
@@ -1 +1 @@
-NOTE_FS8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9.html
index e546ddf..4b869d3 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9.html
@@ -1 +1 @@
-NOTE_FS9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9H.html
index f6549c1..6b00d87 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_FS9H.html
@@ -1 +1 @@
-NOTE_FS9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0.html
index 39857cb..7f572f6 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0.html
@@ -1 +1 @@
-NOTE_G0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0H.html
index 20ae91a..556552d 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G0H.html
@@ -1 +1 @@
-NOTE_G0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1.html
index 535f55c..426944b 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1.html
@@ -1 +1 @@
-NOTE_G1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1H.html
index 72bd469..1c8c2c7 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G1H.html
@@ -1 +1 @@
-NOTE_G1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2.html
index 0317780..c5ce73c 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2.html
@@ -1 +1 @@
-NOTE_G2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2H.html
index a2438f4..5542257 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G2H.html
@@ -1 +1 @@
-NOTE_G2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3.html
index 3c3b64b..55cf7d8 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3.html
@@ -1 +1 @@
-NOTE_G3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3H.html
index 401f66d..19a59ac 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G3H.html
@@ -1 +1 @@
-NOTE_G3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4.html
index 85baf3a..1d30a20 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4.html
@@ -1 +1 @@
-NOTE_G4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4H.html
index d05cc78..de084e2 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G4H.html
@@ -1 +1 @@
-NOTE_G4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5.html
index ea6431c..055ae99 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5.html
@@ -1 +1 @@
-NOTE_G5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5H.html
index ecc1bd3..7c903c2 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G5H.html
@@ -1 +1 @@
-NOTE_G5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6.html
index 08353b9..f90c715 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6.html
@@ -1 +1 @@
-NOTE_G6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6H.html
index 6b77762..9948472 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G6H.html
@@ -1 +1 @@
-NOTE_G6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7.html
index b5381a8..066cde5 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7.html
@@ -1 +1 @@
-NOTE_G7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7H.html
index 8682b14..3f495f9 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G7H.html
@@ -1 +1 @@
-NOTE_G7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8.html
index 276b011..aa7f92a 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8.html
@@ -1 +1 @@
-NOTE_G8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8H.html
index 571e00d..cda62e6 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G8H.html
@@ -1 +1 @@
-NOTE_G8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9.html
index 1273a98..4036625 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9.html
@@ -1 +1 @@
-NOTE_G9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9H.html
index 6acec46..6ddb24b 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_G9H.html
@@ -1 +1 @@
-NOTE_G9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0.html
index 897fa62..ac60414 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0.html
@@ -1 +1 @@
-NOTE_GS0 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0H.html
index 8e4df3e..bef5549 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS0H.html
@@ -1 +1 @@
-NOTE_GS0H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1.html
index c381dd8..338cfe0 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1.html
@@ -1 +1 @@
-NOTE_GS1 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1H.html
index 8dc5475..ae5182b 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS1H.html
@@ -1 +1 @@
-NOTE_GS1H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2.html
index 6988536..6f5b1ed 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2.html
@@ -1 +1 @@
-NOTE_GS2 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2H.html
index f03ad44..83e301d 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS2H.html
@@ -1 +1 @@
-NOTE_GS2H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3.html
index 8dee61b..4de5196 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3.html
@@ -1 +1 @@
-NOTE_GS3 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3H.html
index b448309..9d27864 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS3H.html
@@ -1 +1 @@
-NOTE_GS3H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4.html
index 2badec1..9f7a54d 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4.html
@@ -1 +1 @@
-NOTE_GS4 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4H.html
index f3b9f05..bf0a201 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS4H.html
@@ -1 +1 @@
-NOTE_GS4H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5.html
index 001e477..1b6ac59 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5.html
@@ -1 +1 @@
-NOTE_GS5 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5H.html
index 5eab798..9173bfb 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS5H.html
@@ -1 +1 @@
-NOTE_GS5H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6.html
index d2348a1..cc0a1df 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6.html
@@ -1 +1 @@
-NOTE_GS6 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6H.html
index bc05d70..596ada4 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS6H.html
@@ -1 +1 @@
-NOTE_GS6H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7.html
index 7b4b408..6d0ed12 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7.html
@@ -1 +1 @@
-NOTE_GS7 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7H.html
index ff3d2bc..89c678e 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS7H.html
@@ -1 +1 @@
-NOTE_GS7H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8.html
index e98c7f5..736ce15 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8.html
@@ -1 +1 @@
-NOTE_GS8 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8H.html
index 92b8ed3..3e272a4 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS8H.html
@@ -1 +1 @@
-NOTE_GS8H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9.html
index 91ff3e5..0d723cf 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9.html
@@ -1 +1 @@
-NOTE_GS9 in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9H.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9H.html
index eb7661d..725a8c9 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9H.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_GS9H.html
@@ -1 +1 @@
-NOTE_GS9H in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_REST.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_REST.html
index fbcc1c9..bbfb777 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_REST.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.NOTE_REST.html
@@ -1 +1 @@
-NOTE_REST in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONES_END.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONES_END.html
index d903025..d7b2597 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONES_END.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONES_END.html
@@ -1 +1 @@
-TONES_END in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONES_REPEAT.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONES_REPEAT.html
index 42e8293..c101a1c 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONES_REPEAT.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONES_REPEAT.html
@@ -1 +1 @@
-TONES_REPEAT in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONE_HIGH_VOLUME.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONE_HIGH_VOLUME.html
index 6998c39..d79ec87 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONE_HIGH_VOLUME.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.TONE_HIGH_VOLUME.html
@@ -1 +1 @@
-TONE_HIGH_VOLUME in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_HIGH.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_HIGH.html
index 3908218..5f2da64 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_HIGH.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_HIGH.html
@@ -1 +1 @@
-VOLUME_ALWAYS_HIGH in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_NORMAL.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_NORMAL.html
index 57537eb..48f0dd5 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_NORMAL.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_ALWAYS_NORMAL.html
@@ -1 +1 @@
-VOLUME_ALWAYS_NORMAL in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_IN_TONE.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_IN_TONE.html
index 2059ac9..440d7dc 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_IN_TONE.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/constant.VOLUME_IN_TONE.html
@@ -1 +1 @@
-VOLUME_IN_TONE in arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/index.html b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/index.html
index 4f0e955..de87856 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/index.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/arduboy_tone_pitch/index.html
@@ -1,2 +1,2 @@
-arduboy_rust::arduboy_tone::arduboy_tone_pitch - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/index.html b/docs/doc/arduboy_rust/arduboy_tone/index.html
index df72a59..218bb3f 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/index.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/index.html
@@ -1,2 +1,2 @@
-arduboy_rust::arduboy_tone - Rust
This is the struct to interact in a save way with the ArduboyTones C++ library.
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduboy_tone/struct.ArduboyTones.html b/docs/doc/arduboy_rust/arduboy_tone/struct.ArduboyTones.html
index 136595a..5f30fab 100644
--- a/docs/doc/arduboy_rust/arduboy_tone/struct.ArduboyTones.html
+++ b/docs/doc/arduboy_rust/arduboy_tone/struct.ArduboyTones.html
@@ -1,4 +1,4 @@
-ArduboyTones in arduboy_rust::arduboy_tone - Rust
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
Performs the conversion.
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduino/fn.delay.html b/docs/doc/arduboy_rust/arduino/fn.delay.html
index 04df5a3..a9c928a 100644
--- a/docs/doc/arduboy_rust/arduino/fn.delay.html
+++ b/docs/doc/arduboy_rust/arduino/fn.delay.html
@@ -1,2 +1,2 @@
-delay in arduboy_rust::arduino - Rust
A Arduino function to pause the cpu circles for a given amount of ms
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduino/fn.random_between.html b/docs/doc/arduboy_rust/arduino/fn.random_between.html
index 56ff91a..d36b0dd 100644
--- a/docs/doc/arduboy_rust/arduino/fn.random_between.html
+++ b/docs/doc/arduboy_rust/arduino/fn.random_between.html
@@ -1,3 +1,3 @@
-random_between in arduboy_rust::arduino - Rust
A Arduino function to get a random number between 2 numbers
seed based
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduino/fn.random_less_than.html b/docs/doc/arduboy_rust/arduino/fn.random_less_than.html
index 358e700..49403eb 100644
--- a/docs/doc/arduboy_rust/arduino/fn.random_less_than.html
+++ b/docs/doc/arduboy_rust/arduino/fn.random_less_than.html
@@ -1,3 +1,3 @@
-random_less_than in arduboy_rust::arduino - Rust
A Arduino function to get a random number smaller than the number given
seed based
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/arduino/index.html b/docs/doc/arduboy_rust/arduino/index.html
index 1839fb4..f2d2ad1 100644
--- a/docs/doc/arduboy_rust/arduino/index.html
+++ b/docs/doc/arduboy_rust/arduino/index.html
@@ -1,4 +1,4 @@
-arduboy_rust::arduino - Rust
A Arduino function to get a random number smaller than the number given
seed based
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/c/fn.strlen.html b/docs/doc/arduboy_rust/c/fn.strlen.html
index 2d304fd..fc7bcdf 100644
--- a/docs/doc/arduboy_rust/c/fn.strlen.html
+++ b/docs/doc/arduboy_rust/c/fn.strlen.html
@@ -1,2 +1,2 @@
-strlen in arduboy_rust::c - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/c/index.html b/docs/doc/arduboy_rust/c/index.html
index 26ea2d9..22b867a 100644
--- a/docs/doc/arduboy_rust/c/index.html
+++ b/docs/doc/arduboy_rust/c/index.html
@@ -1,2 +1,2 @@
-arduboy_rust::c - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/constant.FONT_SIZE.html b/docs/doc/arduboy_rust/constant.FONT_SIZE.html
index aabfa17..be12b0f 100644
--- a/docs/doc/arduboy_rust/constant.FONT_SIZE.html
+++ b/docs/doc/arduboy_rust/constant.FONT_SIZE.html
@@ -1,3 +1,3 @@
-FONT_SIZE in arduboy_rust - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/constant.HEIGHT.html b/docs/doc/arduboy_rust/constant.HEIGHT.html
index 8f290da..ced88e3 100644
--- a/docs/doc/arduboy_rust/constant.HEIGHT.html
+++ b/docs/doc/arduboy_rust/constant.HEIGHT.html
@@ -1,3 +1,3 @@
-HEIGHT in arduboy_rust - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/constant.WIDTH.html b/docs/doc/arduboy_rust/constant.WIDTH.html
index 137f0c9..5fd7ed9 100644
--- a/docs/doc/arduboy_rust/constant.WIDTH.html
+++ b/docs/doc/arduboy_rust/constant.WIDTH.html
@@ -1,3 +1,3 @@
-WIDTH in arduboy_rust - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/enum.Color.html b/docs/doc/arduboy_rust/enum.Color.html
index 7374c46..f8a42c3 100644
--- a/docs/doc/arduboy_rust/enum.Color.html
+++ b/docs/doc/arduboy_rust/enum.Color.html
@@ -1,4 +1,4 @@
-Color in arduboy_rust - Rust
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
Performs the conversion.
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.A.html b/docs/doc/arduboy_rust/hardware/buttons/constant.A.html
index b19d768..c5dcd84 100644
--- a/docs/doc/arduboy_rust/hardware/buttons/constant.A.html
+++ b/docs/doc/arduboy_rust/hardware/buttons/constant.A.html
@@ -1,2 +1,2 @@
-A in arduboy_rust::hardware::buttons - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.A_BUTTON.html b/docs/doc/arduboy_rust/hardware/buttons/constant.A_BUTTON.html
index d630d74..c46ff6a 100644
--- a/docs/doc/arduboy_rust/hardware/buttons/constant.A_BUTTON.html
+++ b/docs/doc/arduboy_rust/hardware/buttons/constant.A_BUTTON.html
@@ -1,2 +1,2 @@
-A_BUTTON in arduboy_rust::hardware::buttons - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.B.html b/docs/doc/arduboy_rust/hardware/buttons/constant.B.html
index 8564f90..0becc6a 100644
--- a/docs/doc/arduboy_rust/hardware/buttons/constant.B.html
+++ b/docs/doc/arduboy_rust/hardware/buttons/constant.B.html
@@ -1,2 +1,2 @@
-B in arduboy_rust::hardware::buttons - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.B_BUTTON.html b/docs/doc/arduboy_rust/hardware/buttons/constant.B_BUTTON.html
index 7e77162..31c0038 100644
--- a/docs/doc/arduboy_rust/hardware/buttons/constant.B_BUTTON.html
+++ b/docs/doc/arduboy_rust/hardware/buttons/constant.B_BUTTON.html
@@ -1,2 +1,2 @@
-B_BUTTON in arduboy_rust::hardware::buttons - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.DOWN.html b/docs/doc/arduboy_rust/hardware/buttons/constant.DOWN.html
index 4f69d48..6fb3966 100644
--- a/docs/doc/arduboy_rust/hardware/buttons/constant.DOWN.html
+++ b/docs/doc/arduboy_rust/hardware/buttons/constant.DOWN.html
@@ -1,2 +1,2 @@
-DOWN in arduboy_rust::hardware::buttons - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.DOWN_BUTTON.html b/docs/doc/arduboy_rust/hardware/buttons/constant.DOWN_BUTTON.html
index 183ab42..a0a7268 100644
--- a/docs/doc/arduboy_rust/hardware/buttons/constant.DOWN_BUTTON.html
+++ b/docs/doc/arduboy_rust/hardware/buttons/constant.DOWN_BUTTON.html
@@ -1,2 +1,2 @@
-DOWN_BUTTON in arduboy_rust::hardware::buttons - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.LEFT.html b/docs/doc/arduboy_rust/hardware/buttons/constant.LEFT.html
index e5a1048..e63e48c 100644
--- a/docs/doc/arduboy_rust/hardware/buttons/constant.LEFT.html
+++ b/docs/doc/arduboy_rust/hardware/buttons/constant.LEFT.html
@@ -1,2 +1,2 @@
-LEFT in arduboy_rust::hardware::buttons - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.LEFT_BUTTON.html b/docs/doc/arduboy_rust/hardware/buttons/constant.LEFT_BUTTON.html
index 6e62b0d..ddc9e4f 100644
--- a/docs/doc/arduboy_rust/hardware/buttons/constant.LEFT_BUTTON.html
+++ b/docs/doc/arduboy_rust/hardware/buttons/constant.LEFT_BUTTON.html
@@ -1,2 +1,2 @@
-LEFT_BUTTON in arduboy_rust::hardware::buttons - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.RIGHT.html b/docs/doc/arduboy_rust/hardware/buttons/constant.RIGHT.html
index 70389f9..6a3968e 100644
--- a/docs/doc/arduboy_rust/hardware/buttons/constant.RIGHT.html
+++ b/docs/doc/arduboy_rust/hardware/buttons/constant.RIGHT.html
@@ -1,2 +1,2 @@
-RIGHT in arduboy_rust::hardware::buttons - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.RIGHT_BUTTON.html b/docs/doc/arduboy_rust/hardware/buttons/constant.RIGHT_BUTTON.html
index cb3832b..fb3ae68 100644
--- a/docs/doc/arduboy_rust/hardware/buttons/constant.RIGHT_BUTTON.html
+++ b/docs/doc/arduboy_rust/hardware/buttons/constant.RIGHT_BUTTON.html
@@ -1,2 +1,2 @@
-RIGHT_BUTTON in arduboy_rust::hardware::buttons - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.UP.html b/docs/doc/arduboy_rust/hardware/buttons/constant.UP.html
index 3bfd568..08a7ca0 100644
--- a/docs/doc/arduboy_rust/hardware/buttons/constant.UP.html
+++ b/docs/doc/arduboy_rust/hardware/buttons/constant.UP.html
@@ -1,2 +1,2 @@
-UP in arduboy_rust::hardware::buttons - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/buttons/constant.UP_BUTTON.html b/docs/doc/arduboy_rust/hardware/buttons/constant.UP_BUTTON.html
index c0d7dc5..388f379 100644
--- a/docs/doc/arduboy_rust/hardware/buttons/constant.UP_BUTTON.html
+++ b/docs/doc/arduboy_rust/hardware/buttons/constant.UP_BUTTON.html
@@ -1,2 +1,2 @@
-UP_BUTTON in arduboy_rust::hardware::buttons - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/buttons/index.html b/docs/doc/arduboy_rust/hardware/buttons/index.html
index 5380238..f913b5a 100644
--- a/docs/doc/arduboy_rust/hardware/buttons/index.html
+++ b/docs/doc/arduboy_rust/hardware/buttons/index.html
@@ -1,2 +1,2 @@
-arduboy_rust::hardware::buttons - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/buttons/struct.ButtonSet.html b/docs/doc/arduboy_rust/hardware/buttons/struct.ButtonSet.html
index ee03487..f0c8bc2 100644
--- a/docs/doc/arduboy_rust/hardware/buttons/struct.ButtonSet.html
+++ b/docs/doc/arduboy_rust/hardware/buttons/struct.ButtonSet.html
@@ -1,4 +1,4 @@
-ButtonSet in arduboy_rust::hardware::buttons - Rust
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
Performs the conversion.
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/index.html b/docs/doc/arduboy_rust/hardware/index.html
index e50e6c1..a822e25 100644
--- a/docs/doc/arduboy_rust/hardware/index.html
+++ b/docs/doc/arduboy_rust/hardware/index.html
@@ -1,2 +1,2 @@
-arduboy_rust::hardware - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/led/constant.BLUE_LED.html b/docs/doc/arduboy_rust/hardware/led/constant.BLUE_LED.html
index 0024330..5a29614 100644
--- a/docs/doc/arduboy_rust/hardware/led/constant.BLUE_LED.html
+++ b/docs/doc/arduboy_rust/hardware/led/constant.BLUE_LED.html
@@ -1,2 +1,2 @@
-BLUE_LED in arduboy_rust::hardware::led - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/led/constant.GREEN_LED.html b/docs/doc/arduboy_rust/hardware/led/constant.GREEN_LED.html
index 31d572f..8138f8c 100644
--- a/docs/doc/arduboy_rust/hardware/led/constant.GREEN_LED.html
+++ b/docs/doc/arduboy_rust/hardware/led/constant.GREEN_LED.html
@@ -1,2 +1,2 @@
-GREEN_LED in arduboy_rust::hardware::led - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/led/constant.RED_LED.html b/docs/doc/arduboy_rust/hardware/led/constant.RED_LED.html
index abcfdab..77f1d9a 100644
--- a/docs/doc/arduboy_rust/hardware/led/constant.RED_LED.html
+++ b/docs/doc/arduboy_rust/hardware/led/constant.RED_LED.html
@@ -1,2 +1,2 @@
-RED_LED in arduboy_rust::hardware::led - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/led/constant.RGB_OFF.html b/docs/doc/arduboy_rust/hardware/led/constant.RGB_OFF.html
index e4761ea..e6b2ae7 100644
--- a/docs/doc/arduboy_rust/hardware/led/constant.RGB_OFF.html
+++ b/docs/doc/arduboy_rust/hardware/led/constant.RGB_OFF.html
@@ -1,2 +1,2 @@
-RGB_OFF in arduboy_rust::hardware::led - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/led/constant.RGB_ON.html b/docs/doc/arduboy_rust/hardware/led/constant.RGB_ON.html
index 0d2ec5a..834feea 100644
--- a/docs/doc/arduboy_rust/hardware/led/constant.RGB_ON.html
+++ b/docs/doc/arduboy_rust/hardware/led/constant.RGB_ON.html
@@ -1,2 +1,2 @@
-RGB_ON in arduboy_rust::hardware::led - Rust
\ No newline at end of file
diff --git a/docs/doc/arduboy_rust/hardware/led/index.html b/docs/doc/arduboy_rust/hardware/led/index.html
index d5628d1..fcf6bf3 100644
--- a/docs/doc/arduboy_rust/hardware/led/index.html
+++ b/docs/doc/arduboy_rust/hardware/led/index.html
@@ -1,2 +1,2 @@
-arduboy_rust::hardware::led - Rust
\ 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 ca51a4e..10242a2 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 09cbe28..c06af34 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 33fdac2..2836246 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 e5cd2ae..b58129d 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 fd3255c..a27e3de 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 a230945..b595623 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 14d1871..536fcc3 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 0eabe47..1a5f22c 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 0278d0c..f65ece0 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 e716d6f..478baf8 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 8f38d0b..f40a4c3 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 b8f59d0..dbbd845 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 4bad764..c63080f 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 f476ca9..dbb2258 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 01d1dba..6871435 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 fd64a0c..2d47de3 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 e616bca..1682156 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 538a0cc..5101c01 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 27e2112..3583833 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 6d94c88..e065857 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 48beda9..b392315 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 c7992a8..1e2bbf3 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 v = [10, 40, 30];
assert_eq!(Some(&40), v.get(1));
assert_eq!(Some(&[10, 40][..]), v.get(0..2));
@@ -181,10 +247,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 {
@@ -198,7 +264,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']);
@@ -275,9 +341,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']);
@@ -293,9 +359,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']);
@@ -304,13 +370,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();
@@ -364,10 +430,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();
@@ -379,10 +445,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();
@@ -397,9 +463,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']);
@@ -416,9 +482,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']);
@@ -431,7 +497,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];
@@ -458,9 +524,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];
{
@@ -485,11 +551,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];
@@ -515,9 +581,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][..];
@@ -544,9 +610,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);
@@ -603,7 +669,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);
@@ -624,7 +690,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);
@@ -647,7 +713,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][..]));
@@ -737,7 +803,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][..]));
@@ -755,7 +821,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].
@@ -812,7 +878,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].
@@ -847,7 +913,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
@@ -872,10 +938,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
@@ -908,7 +974,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;
@@ -943,7 +1009,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] = [];
@@ -963,7 +1029,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()));
@@ -979,7 +1045,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 c003332..9264902 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 b7f48d3..6b89699 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 0f25a7c..07a1054 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 b97365c..1f41815 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 1dbd35c..51d68ea 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 8ed26d9..0b133ce 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,26 +566,22 @@ 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\n";
let mut lines = text.lines();
assert_eq!(Some("foo"), lines.next());
assert_eq!(Some("bar"), lines.next());
assert_eq!(Some(""), lines.next());
-// Trailing carriage return is included in the last line
-assert_eq!(Some("baz\r"), lines.next());
+assert_eq!(Some("baz"), lines.next());
assert_eq!(None, lines.next());
-
The final line does not require any ending:
+
The final line ending isn’t required:
let text = "foo\nbar\n\r\nbaz";
let mut lines = text.lines();
@@ -1339,9 +1335,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 a541260..82844a1 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 cab9b04..3367040 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.
let x = &[0, 1, 2];
if let Some((first, elements)) = x.split_first() {
@@ -314,7 +408,7 @@ vec.retain_mut(|x| if *x <=
assert_eq!(elements, &[1, 2]);
}
#![feature(slice_first_last_chunk)]
let x = &[0, 1, 2];
@@ -395,7 +489,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];
@@ -444,7 +538,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));
@@ -475,7 +569,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 {
@@ -524,7 +618,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();
@@ -538,7 +632,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"];
@@ -610,13 +704,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']);
@@ -670,9 +764,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']);
@@ -686,9 +780,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;
@@ -708,9 +802,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']);
@@ -727,9 +821,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();
@@ -802,10 +896,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;
@@ -882,10 +976,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;
@@ -899,10 +993,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();
@@ -917,9 +1011,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']);
@@ -933,9 +1027,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;
@@ -956,9 +1050,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']);
@@ -975,9 +1069,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;
@@ -994,7 +1088,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];
@@ -1023,7 +1117,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];
@@ -1050,9 +1144,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];
{
@@ -1076,9 +1170,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).