Scanner: DVBS
The Scanner.DVBS module provides access to DVBS-speciffic settings and methods for Scanner.
Members
Direction
Enum with the potential satellite direction values.
Properties:
| Name | Type | Description |
|---|---|---|
EAST | East. | |
WEST | West. |
ForwardErrorCorrection
Enum with the potential transponder forward error correction (FEC) values.
Properties:
| Name | Type | Description |
|---|---|---|
FEC_AUTO | Automatic FEC. | |
FEC_1_2 | 1/2 FEC. | |
FEC_2_3 | 2/3 FEC. | |
FEC_3_4 | 3/4 FEC. | |
FEC_5_6 | 5/6 FEC. | |
FEC_7_8 | 7/8 FEC. | |
FEC_1_4 | 1/4 FEC. | |
FEC_1_3 | 1/3 FEC. | |
FEC_2_5 | 2/5 FEC. | |
FEC_8_9 | 8/9 FEC. | |
FEC_9_10 | 9/10 FEC. |
LNBPower
Enum with the potential LNB power values.
Properties:
| Name | Type | Description |
|---|---|---|
AUTO | Automatic power. | |
ON | Power on. | |
OFF | Power off. |
Modulation
Enum with the potential transponder modulation values.
Properties:
| Name | Type | Description |
|---|---|---|
MOD_AUTO | Automatic modulation. | |
MOD_QPSK | QPSK modulation. | |
MOD_8PSK | 8PSK modulation. | |
MOD_16QAM | 16QAM modulation. |
Polarity
Enum with the potential transponder polarity values.
Properties:
| Name | Type | Description |
|---|---|---|
HORIZONTAL | Horizontal polarity. | |
VERTICAL | Vertical polarity. | |
LEFT | Left polarity. | |
RIGHT | Right polarity. |
Version
Enum with the potential transponder version values.
Properties:
| Name | Type | Description |
|---|---|---|
S | S version. | |
S2 | S2 version. |
Methods
getInstalledSatellites()
Retrieve a list of the satellites installed in the Set Top Box.
Returns:
| Type | Description |
|---|---|
| A promise. | The listener will be passed the following arguments: - satellites: An array of Satellite objects. |
getSatelliteTransponders(satellite)
Retrieve a list of the transponders of a satellite installed in the Set Top Box.
Parameters:
| Name | Type | Description |
|---|---|---|
satellite | String | The satellite name to retrieve the transponders from. |
Returns:
| Type | Description |
|---|---|
| A promise. | The listener will be passed the following arguments: - transponders: An array of Transponder objects. |
Type Definitions
Satellite
Satellite object properties.
Properties:
| Name | Type | Description |
|---|---|---|
name | String | The name of the satellite. |
longitude | Number | The longitude of the satellite. |
direction | module:Platform.Scanner.DVBS.Direction | The direction of the satellite. |
Transponder
Transponder object properties.
Properties:
| Name | Type | Description |
|---|---|---|
version | module:Platform.Scanner.DVBS.Version | The version of the transponder. |
frequency | Number | The frequency of the transponder in MHz. |
polarity | module:Platform.Scanner.DVBS.Polarity | The polarity of the transponder. |
symbolRate | Number | The symbol rate of the transponder in kSps. |
fec | module:Platform.Scanner.DVBS.ForwardErrorCorrection | The forward error correction of the transponder. |
modulation | module:Platform.Scanner.DVBS.Modulation | The modulation of the transponder. |