Equalizer Entity¶
See the Equalizer Entity for generic information.
- group EqualizerEntity
Provides receiver and transmitter gain/boost/emphasis settings for some of Acroname’s products. Please see product documentation for further details.
-
void equalizer_setReceiverConfig(unsigned int *id, struct Result *result, const int index, const unsigned char channel, const unsigned char config)¶
Sets the receiver configuration for a given channel.
The result parameter will output the following fields:
error: Common EntityClass Return Values common entity return value
- Parameters:
id – ID assigned through “module_createStem”
result – Output object containing result code.
index – The index of the entity in question.
channel – The equalizer receiver channel.
config – Configuration to be applied to the receiver.
-
void equalizer_getReceiverConfig(unsigned int *id, struct Result *result, const int index, const unsigned char channel)¶
Gets the receiver configuration for a given channel.
The result parameter will output the following fields:
error: Common EntityClass Return Values common entity return value
value: Configuration of the receiver.
- Parameters:
id – ID assigned through “module_createStem”
result – Output object containing result code and the requested value if successful.
index – The index of the entity in question.
channel – The equalizer receiver channel.
-
void equalizer_setTransmitterConfig(unsigned int *id, struct Result *result, const int index, const unsigned char config)¶
Sets the transmitter configuration
The result parameter will output the following fields:
error: Common EntityClass Return Values common entity return value
- Parameters:
id – ID assigned through “module_createStem”
result – Output object containing result code.
index – The index of the entity in question.
config – Configuration to be applied to the transmitter.
-
void equalizer_getTransmitterConfig(unsigned int *id, struct Result *result, const int index)¶
Gets the transmitter configuration
The result parameter will output the following fields:
error: Common EntityClass Return Values common entity return value
value: Configuration of the Transmitter.
- Parameters:
id – ID assigned through “module_createStem”
result – Output object containing result code and the requested value if successful.
index – The index of the entity in question.