Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

Deutsch

Beschreibung:

Mit diesem Skript können Sie die Einstellungen vom Funkmodul eines LCOS-Gerätes konfigurieren.

Liste der verwendeten Variablen:

VariableBeschreibung




Add-in Code:


/**


 *

@param

{Config}

config


 *

@param

{Context}

context


 *

Do

not

edit

this

comment

or

parameter

types.

Required

for

code

suggestions


*/


exports.main

=

function

(config,

context)

{

{
    //

/Setup/Interfaces/WLAN/Radio-Settings/

var radioSettings =


    var radioSettings = config.getTableByOid("1.2.23.20.8");

var rowWlan1 =


    var rowWlan1 = radioSettings.getFirstRowByOid("1",

"1");

if


    if (rowWlan1)

{

{
        rowWlan1.setByOid("8",

context.vars.Radio_Channel);

     //

set

the

radio

channel

channel
        rowWlan1.setByOid("2",

context.vars.Tx_Power_Reduction);

//

transmission

reduction

reduction
        radioSettings.addOrMerge(rowWlan1);

}


    }
};

Add-in als JSON-Datei:

View file
nameradio_settings.json
height150

...

Englisch

Description:

You can use this script to configure the radio settings of an LCOS device.

List of used variables:

VariableDescription




Add-in code:


/**


 *

@param

{Config}

config


 *

@param

{Context}

context


 *

Do

not

edit

this

comment

or

parameter

types.

Required

for

code

suggestions


*/


exports.main

=

function

(config,

context)

{

{
    //

/Setup/Interfaces/WLAN/Radio-Settings/

var radioSettings =


    var radioSettings = config.getTableByOid("1.2.23.20.8");

var rowWlan1 =


    var rowWlan1 = radioSettings.getFirstRowByOid("1",

"1");

if


    if (rowWlan1)

{

{
        rowWlan1.setByOid("8",

context.vars.Radio_Channel);

     //

set

the

radio

channel

channel
        rowWlan1.setByOid("2",

context.vars.Tx_Power_Reduction);

//

transmission

reduction

reduction
        radioSettings.addOrMerge(rowWlan1);

}


    }
};

Add-in as JSON file:

View file
nameradio_settings.json
height150

...