![]() |
PU2CLR RDA5807 Arduino Library 1.1.8
Arduino Library for RDA5807 Devices - By Ricardo Lima Caratti
|
Functions | |
bool | RDA5807::isSoftmuted () |
Gets the softmute status. | |
void | RDA5807::setLedStereoIndicator (bool value=true) |
Sets the system to use a LED to indicate Stereo or Mono. | |
bool | RDA5807::isMuted () |
Gets Audio Mute Status. | |
bool | RDA5807::isAudioOutputHighImpedance () |
Gets true if the output audio impedance is high. | |
void | RDA5807::setSoftmute (bool value) |
Sets Soft Mute Enable or disable. | |
void | RDA5807::setMute (bool value) |
Sets Audio mute or unmute. | |
void | RDA5807::setAudioOutputHighImpedance (bool value) |
Sets audio output impedance high ow low. | |
void | RDA5807::setMono (bool value) |
Sets audio Mono or stereo. | |
void | RDA5807::setBass (bool value) |
Sets Bass Boost. | |
bool | RDA5807::isStereo () |
Gets the current Stereo status. | |
void | RDA5807::setVolume (uint8_t value) |
Sets the audio volume level. | |
uint8_t | RDA5807::getVolume () |
Gets the current audio volume level. | |
void | RDA5807::setVolumeUp () |
Increments the audio volume. | |
void | RDA5807::setVolumeDown () |
Decrements the audio volume. | |
|
inline |
|
inline |
Sets the system to use a LED to indicate Stereo or Mono.
Call this function to setup the GPIO3 of the RDA5807FP (pin 15) to turn a LED on or OFF.
When Stereo, the GPIO3 is HIGH.
value | true or false. |
|
inline |
|
inline |
void RDA5807::setSoftmute | ( | bool | value | ) |
Sets Soft Mute Enable or disable.
value | true = enable; false=disable |
Definition at line 1463 of file RDA5807.cpp.
void RDA5807::setMute | ( | bool | value | ) |
Sets Audio mute or unmute.
value | TRUE = mute; FALSE = unmute |
Definition at line 1474 of file RDA5807.cpp.
void RDA5807::setAudioOutputHighImpedance | ( | bool | value | ) |
Sets audio output impedance high ow low.
Useful to setup high impedance headphones
value | TRUE = High; FALSE = Low |
Definition at line 1487 of file RDA5807.cpp.
void RDA5807::setMono | ( | bool | value | ) |
Sets audio Mono or stereo.
value | TRUE = Mono; FALSE force stereo |
Definition at line 1500 of file RDA5807.cpp.
void RDA5807::setBass | ( | bool | value | ) |
Sets Bass Boost.
value | FALSE = Disable; TRUE = Enable |
Definition at line 1513 of file RDA5807.cpp.
bool RDA5807::isStereo | ( | ) |
void RDA5807::setVolume | ( | uint8_t | value | ) |
Sets the audio volume level.
You can use values between 0 and 15.
value | (from 0 to 15) |
Definition at line 1556 of file RDA5807.cpp.
uint8_t RDA5807::getVolume | ( | ) |
Gets the current audio volume level.
Definition at line 1571 of file RDA5807.cpp.
void RDA5807::setVolumeUp | ( | ) |
Increments the audio volume.
Definition at line 1581 of file RDA5807.cpp.
void RDA5807::setVolumeDown | ( | ) |
Decrements the audio volume.
Definition at line 1595 of file RDA5807.cpp.