Method: Phidgets::BLDCMotor#getDataInterval
- Defined in:
- ext/phidgets/phidgets_bldc_motor.c
#getDataInterval ⇒ Object Also known as: data_interval
The DataInterval is the time that must elapse before the controller will fire another update event. The data interval is bounded by MinDataInterval and MaxDataInterval.
44 45 46 |
# File 'ext/phidgets/phidgets_bldc_motor.c', line 44
VALUE ph_bldc_motor_get_data_interval(VALUE self) {
return ph_get_uint(get_ph_handle(self), (phidget_get_uint_func)PhidgetBLDCMotor_getDataInterval);
}
|