Table of Contents
hil_read_encoder_write_pwm
The HIL API MATLAB functions have been deprecated in favour of the new quanser.hardware.hil class, which has support for code generation for Quanser targets. Hence, with the new hil class it is possible to run MATLAB scripts in real-time on Quanser targets, while making use of the Quanser hardware. |
Reads from the specified encoder input channels and writes to the specified PWM output channels.
[encoder_counts, err] = hil_read_encoder_write_pwm(board, encoder_channels, pwm_channels, duty_cycles)
Reads from the specified encoder input channels and writes to the specified PWM output channels. Channel numbers are zero-based. The write operation is performed immediately after the read operation (generally performed at the hardware or device driver level so the operations are virtually concurrent).
If no err output is provided then it throws an exception if an error occurs. In generated code it prints the error message. Use hil_get_error_message to get the message associated with an error code.
board
The board handle returned by hil_open.
encoder_channels
A vector of encoder channel numbers. Channel numbers are zero-based.
Select a board type from the list for board-specific details: .
pwm_channels
A vector of PWM channel numbers. Channel numbers are zero-based.
Select a board type from the list for board-specific details: .
duty_cycles
In PWM duty cycle mode, this argument is a vector of duty cycles. Values may range from -1.0 to +1.0. Sign indicates direction for bipolar PWM outputs. There must be one element for each PWM channel.
In PWM frequency mode, this argument is a vector of frequencies in Hertz. Sign indicates direction for bipolar PWM outputs. There must be one element for each PWM channel.
In PWM period mode, this argument is a vector of periods in seconds. Sign indicates direction for bipolar PWM outputs. There must be one element for each PWM channel.
encoder_counts
A vector of the encoder counts read, as int32s. There will be one element for each input channel.
err
A negative error code or zero on success.
% Writes 50% to PWM channel 5 while reading from encoder channels 0 and 3
counts = hil_read_encoder_write_pwm(board, [0 3], 5, 0.5);
See Also
Copyright ©2024 Quanser Inc. This page was generated 2024-10-17. Submit feedback to Quanser about this page.
Link to this page.