Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Purpose

Get the value of an Analog Channel (joystick) on a remote controller connected to the CrcDuino via a CrcConnect module.

When to use

Whenever you need to use the position of a remote controller joystick.

Where to use

Most probably in the void loop() part of your .ino file, since we’d usually want to actively monitor the value.

Click here to learn more on the CrcConnect system, that allows to control a CrcDuino using popular off-the-shelf remote controllers.

If not connection is established with a remote controller via a CrcConnect module, ReadAnalogChannel() returns a value of 0. Depending on the application, it might be useful to validate the status of the connection using LaFonction1.

This function requires the use of the following CrcLib functions at some point of your .ino file in order to work properly:

Returns

This function returns the value of the analog channel mentioned as the function’s argument as a signed chartype. The value returned will range between -128 and 127, proportionally to the position of the joystick. The returned value will be:

  • -128, if the joystick is at the maximum left position (for x axis channels) or maximum down position (for y axis channels)

  • 0, if the joystick is at the middle position of the axis, or if no connection is established between a remote controller and the CrcDuino (via a CrcConnect Module)

  • 127, if the joystick is at the maximum right position (for x axis channels) or maximum up position (for y axis channels)

Main prototype and parameters

static int8_t Crc::CrcLib::ReadAnalogChannel(ANALOG channel)

The following parameters must be passed to the function for it to work properly:

  • channel: The name of the joystick channel you want to read the value of. Must be of the type ANALOG.

Overloads

This function does not have any overloads. It can only be used as described by the main prototype.

Examples

 #1: We want to print on the serial monitor the position of the horizontal axis of the left joystick of a wired XBOX 360 controller, connected via a CrcConnect module.
#include <CrcLib.h>

using namespace Crc;

signed char joystickValue;

void setup() {
    CrcLib::Initialize();
    
    CrcLib::InitializePwmOutput(CRC_PWM_12, 500, 2500);
    Serial.begin(2000000);  //Open the serial Monitor at a 2000000 baud rate
    
    /* 
    The rest of your setup code
    ...
     */
}
void loop() {
    CrcLib::Update();

    joystickValue = CrcLib::ReadAnalogChannel(ANALOG::JOYSTICK1_X);
    Serial.println(joystickValue);
    /* 
    The rest of your looping code
    ...
    */
}

More on this function

There is sadly nothing more to be said about this function…

  • No labels