You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.
Hey there,
I haven't been using the gyro a lot, but I was pretty impressed by the Alpakka's performance so I decided to try if I could replicate this with the SC, but I was quite violently stopped by some bug that randomly clears the various different options in the gyro's "Per Axis" configuration menu:
Whenever I toggle any of those "Absolute", Yaw gets cleared. Whenever I change the sensitivity, Everything gets cleared.
There are a lot more issues with options being randomly cleared or even the whole gyro menu being cleared.
It's hard to miss.
Can you fix this?
Thanks!
Edit: I wanted to do something like None, gyroabs(Axes.ABS_X), gyro(Axes.ABS_RX), for my gyro config, but apparently this is not valid. Is it even possible to set absolute and relative per axis or does it have to be global?
The text was updated successfully, but these errors were encountered:
Looks like it is writing the output commands wrong during GUI changes. I know the main Gyro config GUI has had issues as well but those came up so randomly that I never got to find out why. Will look into this issue and see why the GUI is behaving the way it is in the first place.
I think I found the biggest problem. Had to change an if statement in commit 5c45ca7. ABS_X has a code of 0 which Python will evaluate as false when used in an if statement. Now the routine explicitly checks if the axis value is not None.
At least now that portion of the GUI seems to be working as expected.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hey there,
I haven't been using the gyro a lot, but I was pretty impressed by the Alpakka's performance so I decided to try if I could replicate this with the SC, but I was quite violently stopped by some bug that randomly clears the various different options in the gyro's "Per Axis" configuration menu:
Whenever I toggle any of those "Absolute", Yaw gets cleared. Whenever I change the sensitivity, Everything gets cleared.
There are a lot more issues with options being randomly cleared or even the whole gyro menu being cleared.
It's hard to miss.
Can you fix this?
Thanks!
Edit: I wanted to do something like
None, gyroabs(Axes.ABS_X), gyro(Axes.ABS_RX),
for my gyro config, but apparently this is not valid. Is it even possible to set absolute and relative per axis or does it have to be global?The text was updated successfully, but these errors were encountered: