We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, Looks like there is a coding error with Euler123 output, setting different initiation and outputing without updating AHRS gives invalid data
refq = Quaternion(1,0,0,0) # look front Euler: (0.0, 0.0, 0.0) Eu123: (0.0, 0.0, 0.0) Quat: [1 0 0 0] refq = Quaternion.from_angle_axis(np.pi/2,0,0,1) # look front, sideways Euler: (0, 1.5707963267948966, 0.0) Eu123: (-0.0, 0.0, 1.5707963267948963) Quat: [ 0.70710678 0. 0. 0.70710678] refq = Quaternion.from_angle_axis(np.pi/2,1,0,0) # look up Euler: (1.5707963267948963, 0.0, 0.0) Eu123: (1.5707963267948963, 1.5707963267948966, -0.0) Quat: [ 0.70710678 0.70710678 0. 0. ] refq = Quaternion.from_angle_axis(np.pi/2,0,1,0) # look right Euler: (0.0, 0.0, 1.5707963267948963) Eu123: (-0.0, 0.0, -0.0) Quat: [ 0.70710678 0. 0.70710678 0. ]
Also discussed here: RiftCat/vridge-api#17
The text was updated successfully, but these errors were encountered:
I agree, still not solved..
Sorry, something went wrong.
No branches or pull requests
Hi,
Looks like there is a coding error with Euler123 output, setting different initiation and outputing without updating AHRS gives invalid data
Also discussed here:
RiftCat/vridge-api#17
The text was updated successfully, but these errors were encountered: