int io16_get_response_expected(IO16 *io16, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(io16->p, function_id, ret_response_expected);
}
Exemple #2
0
int io4_get_response_expected(IO4 *io4, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(io4->p, function_id, ret_response_expected);
}
int analog_out_get_response_expected(AnalogOut *analog_out, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(analog_out->p, function_id, ret_response_expected);
}
int analog_in_v2_get_response_expected(AnalogInV2 *analog_in_v2, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(analog_in_v2->p, function_id, ret_response_expected);
}
int moisture_get_response_expected(Moisture *moisture, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(moisture->p, function_id, ret_response_expected);
}
int load_cell_get_response_expected(LoadCell *load_cell, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(load_cell->p, function_id, ret_response_expected);
}
int distance_us_get_response_expected(DistanceUS *distance_us, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(distance_us->p, function_id, ret_response_expected);
}
int sound_intensity_get_response_expected(SoundIntensity *sound_intensity, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(sound_intensity->p, function_id, ret_response_expected);
}
int current12_get_response_expected(Current12 *current12, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(current12->p, function_id, ret_response_expected);
}
int motion_detector_get_response_expected(MotionDetector *motion_detector, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(motion_detector->p, function_id, ret_response_expected);
}
Exemple #11
0
int distance_ir_get_response_expected(DistanceIR *distance_ir, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(distance_ir, function_id, ret_response_expected);
}
Exemple #12
0
int imu_get_response_expected(IMU *imu, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(imu, function_id, ret_response_expected);
}
int uv_light_get_response_expected(UVLight *uv_light, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(uv_light->p, function_id, ret_response_expected);
}
int voltage_get_response_expected(Voltage *voltage, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(voltage->p, function_id, ret_response_expected);
}
int rotary_poti_get_response_expected(RotaryPoti *rotary_poti, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(rotary_poti->p, function_id, ret_response_expected);
}
int industrial_digital_in_4_get_response_expected(IndustrialDigitalIn4 *industrial_digital_in_4, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(industrial_digital_in_4->p, function_id, ret_response_expected);
}
int lcd_16x2_get_response_expected(LCD16x2 *lcd_16x2, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(lcd_16x2->p, function_id, ret_response_expected);
}
int humidity_v2_get_response_expected(HumidityV2 *humidity_v2, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(humidity_v2->p, function_id, ret_response_expected);
}
int joystick_get_response_expected(Joystick *joystick, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(joystick->p, function_id, ret_response_expected);
}
int solid_state_relay_get_response_expected(SolidStateRelay *solid_state_relay, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(solid_state_relay->p, function_id, ret_response_expected);
}
int industrial_quad_relay_get_response_expected(IndustrialQuadRelay *industrial_quad_relay, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(industrial_quad_relay, function_id, ret_response_expected);
}
Exemple #22
0
int servo_get_response_expected(Servo *servo, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(servo->p, function_id, ret_response_expected);
}
int air_quality_get_response_expected(AirQuality *air_quality, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(air_quality->p, function_id, ret_response_expected);
}
int piezo_buzzer_get_response_expected(PiezoBuzzer *piezo_buzzer, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(piezo_buzzer->p, function_id, ret_response_expected);
}
int co2_get_response_expected(CO2 *co2, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(co2->p, function_id, ret_response_expected);
}
int dual_button_get_response_expected(DualButton *dual_button, uint8_t function_id, bool *ret_response_expected) {
	return device_get_response_expected(dual_button->p, function_id, ret_response_expected);
}