Method: Phidgets::CurrentInput#getMaxDataInterval
- Defined in:
- ext/phidgets/phidgets_current_input.c
#getMaxDataInterval ⇒ Object Also known as: max_data_interval
The maximum value that DataInterval can be set to.
55 56 57 |
# File 'ext/phidgets/phidgets_current_input.c', line 55
VALUE ph_current_input_get_max_data_interval(VALUE self) {
return ph_get_uint(get_ph_handle(self), (phidget_get_uint_func)PhidgetCurrentInput_getMaxDataInterval);
}
|