Method: Phidgets::BLDCMotor#getBrakingStrength
- Defined in:
- ext/phidgets/phidgets_bldc_motor.c
#getBrakingStrength ⇒ Object Also known as: braking_strength
The most recent braking strength value that the controller has reported.
32 33 34 |
# File 'ext/phidgets/phidgets_bldc_motor.c', line 32
VALUE ph_bldc_motor_get_braking_strength(VALUE self) {
return ph_get_double(get_ph_handle(self), (phidget_get_double_func)PhidgetBLDCMotor_getBrakingStrength);
}
|