Object «gamepad»

This article is automatically translated from Russian by Google Translator.

Serves to work with the programmable control panel "TRIK Gamepad".

Method

Description

Returns true if a button with the specified number was pressed on the remote control.

Returns whether the control area on the remote control is currently pressed.

If the specified control area on the remote is pressed, returns the current x-coordinate of the press.

If the specified control area on the remote is pressed, returns the current y-coordinate of the press.

Sent when the user moves his finger away from the control area with the specified number.

Resets the memorized events from the remote control.

If "steering" (events from the device's accelerometer) is enabled on the remote control, it returns the current remote control tilt.

Sent when the remote control has the "steering wheel" (events from the device's accelerometer) on and the user has turned the device.

Signal

Description

Sent when the user has pressed one of the five buttons at the bottom of the remote control.

Sent when the remote control is connected to the robot.

It is sent when the remote control is turned off.

Sent when the user taps or moves their finger over the control area on the remote.

button

Sent when the user has pressed one of the five buttons at the bottom of the remote control.

buttonWasPressed

Returns true if a button with the specified number was pressed on the remote control. Resets the memorized press for this button.

Syntax

gamepad.buttonWasPressed(buttonNumber);

As a parameter, you must specify the number of the button - from 1 to 5.

Example

gamepad.buttonWasPressed(5);

connected

Sent when the remote control is connected to the robot.

disconnect

It is sent when the remote control is turned off.

isPadPressed

Returns whether the control area on the remote control is currently pressed. The control areas are numbered 0 and 1.

Syntax

gamepad.isPadPressed(padId);

As a parameter, you must specify the number of the control area - 0 or 1.

Example

gamepad.isPadPressed(1);

pad

Sent when the user taps or moves their finger over the control area on the remote.

padX

If the specified control area on the remote is pressed, returns the current x-coordinate of the press.

Syntax

gamepad.padX(padId);

As a parameter, you must specify the number of the padId control area.

padY

If the specified control area on the remote is pressed, returns the current y-coordinate of the press.

Syntax

gamepad.padY(padId);

As a parameter, you must specify the number of the padId control area.

padUp

Sent when the user moves his finger away from the control area with the specified number.

Syntax

gamepad.padUp.connect( function(padId, x, y) { brick.stop(); });

Parameters:

  • padId — control area number.

  • x, y — the coordinates of the last known click from -100 to 100. The coordinate (-100, -100) corresponds to the upper left corner of the control area.

reset

Resets the memorized events from the remote control.

Syntax

gamepad.reset();

wheel

If "steering" (events from the device's accelerometer) is enabled on the remote control, it returns the current remote control tilt.

Tilt is coded from -100 to 100, with -100 being the leftmost "rudder" position and 100 being the rightmost position.

Syntax

gamepad.wheel();

wheelEvent

Sent when the remote control has the "steering wheel" (events from the device's accelerometer) on and the user has turned the device.

Syntax

gamepad.wheelEvent.connect( function(percent) { brick.motor("E1").setPower(percent); });

As a parameter it is necessary to specify a number from -100 to 100, -100 corresponds to the leftmost position of the "rudder", 100 - to the rightmost position.

Last updated