Skip to content

Commit

Permalink
Fix orientation - all axis are now full 360 degress
Browse files Browse the repository at this point in the history
  • Loading branch information
Elliot Guest authored and Elliot Guest committed Jan 10, 2025
1 parent b1d1536 commit 5ae45c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions site/controller.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ <h1>gyromidi controller</h1>
method: "POST",
body: JSON.stringify(
{
"AngleX": x,
"AngleY": y+180,
"AngleZ": (z*2)+180
"AngleX": x+180,
"AngleY": (y*2)+180,
"AngleZ": z
}
),
headers: {
Expand Down

0 comments on commit 5ae45c9

Please # to comment.