Skip to content

Commit

Permalink
Merge pull request #237 from EZ-Robotics/website-dev
Browse files Browse the repository at this point in the history
Website dev
  • Loading branch information
ssejrog authored Dec 18, 2024
2 parents 9064a33 + 9a7854b commit 7f8775d
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const config = {
lastVersion: 'current',
versions: {
current: {
label: '3.2.0',
label: '3.2.1',
banner: 'none',
},
'2.x': {
Expand Down Expand Up @@ -111,7 +111,7 @@ const config = {

themeConfig:




/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
Expand Down Expand Up @@ -152,7 +152,7 @@ const config = {
announcementBar: {
id: 'new_version',
content:
'🥳 <a target="_blank" rel="noopener noreferrer" href="https://github.com/EZ-Robotics/EZ-Template/releases/tag/v3.2.0">EZ-Template v3.2.0</a> is out! 🥳',
'🥳 <a target="_blank" rel="noopener noreferrer" href="https://github.com/EZ-Robotics/EZ-Template/releases/tag/v3.2.1">EZ-Template v3.2.1</a> is out! 🥳',
backgroundColor: '#FDFD96',
textColor: '#000000',
isCloseable: true,
Expand Down
2 changes: 1 addition & 1 deletion ez-template-docs/docs/util.md
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ pose vector_off_point(double added, pose icurrent);
```cpp
void initialize() {
ez::pose test = ez::util::vector_off_point(24, {0, 0, 0);
ez::pose test = ez::util::vector_off_point(24, {0, 0, 0});
printf("(%.2f, %.2f, %.2f)\n", test.x, test.y, test.theta);
}
```
Expand Down
2 changes: 1 addition & 1 deletion ez-template-docs/tutorials/blank_pages.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: pages, they're blank, you make them not blank
## What is it?
EZ-Template's autonomous selector takes over the emulated lcd display on the brain screen, making it very difficult to use the screen for debugging.

Blank pages are an easy work around for this, allowing you to add your own pages to the autonomous selector carousel that are blank.
Blank pages are an easy solution for this, allowing you to add your own pages to the autonomous selector carousel that are blank.


## Introduction
Expand Down
6 changes: 6 additions & 0 deletions ez-template-docs/tutorials/mirror_autons.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ odom_x_direction_get(); // True = left is positive X, False = right is positive
odom_theta_direction_get(); // True = positive is counterclockwise, False = positive is counterclockwise
```

:::note

Flipping works without odom too! You'll only need to use `odom_theta_flip()` and `odom_theta_direction_get()`

:::

## Example
You'll need three functions per auton that you want flipped:
- a base function
Expand Down
1 change: 1 addition & 0 deletions src/pages/versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ title: versions
---

# 3.x
### [v3.2.1](https://github.com/EZ-Robotics/EZ-Template/releases/tag/v3.2.1)
## [v3.2.0](https://github.com/EZ-Robotics/EZ-Template/releases/tag/v3.2.0)
#### [v3.2.0-rc.2](https://github.com/EZ-Robotics/EZ-Template/releases/tag/v3.2.0-rc.2)
#### [v3.2.0-rc.1](https://github.com/EZ-Robotics/EZ-Template/releases/tag/v3.2.0-rc.1)
Expand Down

0 comments on commit 7f8775d

Please sign in to comment.