Sensor de distancia#

Introducción#

The distance class is used to control and access data from a Distance Sensor.

The Distance Sensor can detect whether an object is in front of the sensor and return how far away that object is. It can also return the detected object’s relative velocity and estimate whether the object is small, medium, or large.

The Distance Sensor operates over a range of 20 mm to 2000 mm.

Below 200mm, accuracy is approximately ±15mm. Above 200mm, accuracy improves to about 5%.

The Distance Sensor uses a Class 1 laser. Detection is directed straight ahead and is classroom-safe.

Constructores de clases#

distance( int32_t  index );

Instructor de clase#

Destroys the distance object and releases associated resources.

~distance();

Parámetros#

Parámetro

Tipo

Descripción

index

int32_t

The Smart Port that the Distance Sensor is connected to, written as PORTx, where x is the port number (for example, PORT1).

Ejemplos#

// Create a Distance Sensor instance in Port 1
distance Distance1 = distance(PORT1);

Funciones de los miembros#

The distance class includes the following member functions:

  • objectDistance — Returns the distance between the Distance Sensor and the nearest detected object.

  • objectSize — Returns the estimated size of the detected object.

  • objectVelocity — Returns how quickly the detected object is moving toward or away from the Distance Sensor.

  • isObjectDetected — Returns whether the Distance Sensor currently detects an object.

  • changed — Registers a callback function that runs when the detected distance value changes.

  • installed — Returns whether the Distance Sensor is installed and connected.

Before calling any distance member functions, a distance instance must be created, as shown below:

/* This constructor is required when using VS Code.
Distance Sensor configuration is generated automatically
in VEXcode using the Device Menu. Replace the values
as needed. */

// Create a Distance Sensor instance in Port 1
distance Distance1 = distance(PORT1);

objectDistance#

Returns the distance between the Distance Sensor and the nearest detected object.

Available Functions
double objectDistance( distanceUnits units );

Parameters

Parámetro

Tipo

Descripción

units

distanceUnits

The distance unit:

  • mm - millimeters (20 mm to 2000 mm)
  • cm - centimeters (2 cm to 200 cm)
  • inches - inches (0.78 inches to 78.74 inches)

Return Values

Returns a double representing the distance between the Distance Sensor and the nearest detected object in the specified units.

objectSize#

Returns the estimated size of the object detected by the Distance Sensor.

The Distance Sensor estimates object size based on how much of the sensor’s view is taken up by the detected object.

Available Functions
sizeType objectSize();

Parameters

Esta función no requiere ningún parámetro.

Return Values

Returns a sizeType indicating the estimated size of the detected object:

  • none — No object is detected.
  • small — A small object is detected.
  • medium — A medium object is detected.
  • large — A large object is detected.

objectVelocity#

Returns the relative velocity of the detected object.

Velocity shows how quickly the object is moving toward or away from the Distance Sensor. A value near 0 means the object is not moving much relative to the sensor.

Available Functions
double objectVelocity();

Parameters

Esta función no requiere ningún parámetro.

Return Values

Returns a double representing the relative velocity of the detected object in m/s (meters per second).

isObjectDetected#

Returns whether the Distance Sensor currently detects an object.

Available Functions
bool isObjectDetected();

Parameters

Esta función no requiere ningún parámetro.

Return Values

Returns a Boolean indicating whether the Distance Sensor detects an object:

  • true — The Distance Sensor detects an object.
  • false — The Distance Sensor does not detect an object.

changed#

Registra una función de devolución de llamada que se ejecuta cuando cambia el valor de distancia detectado.

Available Functions
void changed( void (* callback)(void) );

Parameters

Parámetro

Tipo

Descripción

callback

void (*)(void)

A pointer to a function that will be called when the detected distance value changes. The function must take no parameters and return void.

Return Values

Esta función no devuelve ningún valor.

installed#

Returns whether the Distance Sensor is installed and connected.

Available Functions
bool installed();

Parameters

Esta función no requiere ningún parámetro.

Return Values

Returns a Boolean indicating whether the Distance Sensor is installed and connected:

  • true — The Distance Sensor is installed and connected.
  • false — The Distance Sensor is not installed or not connected.