|
⇤ ← Revision 1 as of 2020-01-13 13:40:06
Size: 646
Comment: Create SDL_SensorGetData page
|
Size: 647
Comment: Minor typo in table
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 17: | Line 17: |
| ||'''sensor''||The [[SDL_Sensor]] object to query|| | ||'''sensor'''||The [[SDL_Sensor]] object to query|| |
SDL_SensorGetData
Get the current state of an opened sensor.
The number of values and interpretation of the data is sensor dependent.
Syntax
int SDL_SensorGetData(SDL_Sensor * sensor, float *data, int num_values);
Function Parameters
sensor |
The SDL_Sensor object to query |
data |
A pointer filled with the current sensor state |
num_values |
The number of values to write to data |
Return Value
0 or -1 if an error occurred.
