-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
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
add vesc namespace #39
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# | ||
# VESC Realtime Data | ||
# | ||
|
||
# Voltages | ||
float16 volt_in | ||
float16 volt_d | ||
float16 volt_q | ||
|
||
# Temperatures | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please add comments on units |
||
float16 temp_mos_max | ||
float16 temp_mos_1 | ||
float16 temp_mos_2 | ||
float16 temp_mos_3 | ||
float16 temp_motor_max | ||
float16 temp_motor_1 | ||
float16 temp_motor_2 | ||
|
||
# Currents | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. units (amps?) |
||
float16 curr_motor | ||
float16 curr_in | ||
float16 curr_d | ||
float16 curr_q | ||
|
||
# IMU | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. units (radians? degrees?) |
||
float16 roll | ||
float16 pitch | ||
float16 yaw | ||
float16 acc_x | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. units - m/s/s? |
||
float16 acc_y | ||
float16 acc_z | ||
float16 gyro_x | ||
float16 gyro_y | ||
float16 gyro_z | ||
|
||
# Other | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. units for these too |
||
float16 erpm | ||
float16 rpm | ||
float16 duty | ||
float16 ah_used | ||
float16 ah_charged | ||
float16 wh_used | ||
float16 wh_charged | ||
float16 encoder_pos | ||
float16 battery_level | ||
float16 battery_wh_tot | ||
|
||
uint8 fault_code | ||
uint8 vesc_id | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
units