PU2CLR SI4844 Arduino Library
1.0.9
Arduino Library for Si4844 Devices - By Ricardo Lima Caratti
|
Functions | |
void | SI4844::setStatusInterruptFromDevice (bool value) |
Set the Data Status From Device. More... | |
bool | SI4844::getDataStatusInterruptFromDevice () |
Get the Data Status From Device. More... | |
uint8_t | SI4844::getVolume () |
Gets the current audio volume level. More... | |
char * | SI4844::getBandMode () |
Get the Band Mode. More... | |
char * | SI4844::getStereoIndicator () |
Get the Stereo Indicator. More... | |
void | SI4844::setProperty (uint16_t propertyNumber, uint16_t parameter) |
Sends (sets) property to the SI48XX. More... | |
uint16_t | SI4844::getProperty (uint16_t propertyNumber) |
Gets a given property from the SI4844. More... | |
void | SI4844::sendCommand (uint8_t cmd, int parameter_size, const uint8_t *parameter) |
Sends a given command to the SI4844 device. More... | |
void | SI4844::getCommandResponse (int response_size, uint8_t *response) |
Returns with the command response. More... | |
void | SI4844::setup (uint16_t resetPin, int interruptPin, byte defaultBand) |
Initiates the SI4844 instance and connect the device (SI4844) to Arduino. More... | |
void | SI4844::debugDevice (uint16_t resetPin, uint16_t interruptPin, uint8_t defaultBand, void(*showFunc)(char *msg)) |
Used to debug More... | |
void | SI4844::reset (void) |
Resets the SI4844 device. More... | |
void | SI4844::powerDown (void) |
Power the device down. More... | |
void | SI4844::powerUp (void) |
Power the device up. More... | |
void | SI4844::setBand (byte) |
Sets a new band to the device. More... | |
void | SI4844::changeVolume (char) |
Up or down the sound volume level. More... | |
void | SI4844::volumeUp (void) |
Increases the volume level. More... | |
void | SI4844::volumeDown (void) |
Decreases the volume level. More... | |
void | SI4844::setVolume (byte) |
Sets the volume level. More... | |
uint8_t | SI4844::getVolumeProperty () |
Gets the current volume value stored in SI4844 device. More... | |
void | SI4844::setBassTreble (uint8_t bass_treble) |
Set the sound volume level, bass and treble. More... | |
void | SI4844::bassTrebleDown () |
Less treble, more bass. More... | |
void | SI4844::bassTrebleUp () |
More treble, less bass. More... | |
si4844_audiomode_status_response | SI4844::setAudioMode (uint8_t audiomode, uint8_t fm_mono, uint8_t adjpt_attn, uint8_t adjpt_steo, uint8_t opcode) |
Set audio mode. More... | |
void | SI4844::audioMute (uint8_t value) |
Mutes the audio output. More... | |
void | SI4844::setAudioMute (bool on) |
Mutes the audio output. More... | |
si4844_status_response * | SI4844::getStatus (void) |
Get tune freq, band, and others information, status of the device. More... | |
si4844_firmware_response * | SI4844::getFirmware (void) |
Get part number, chip revision, firmware, patch, and component revision numbers. More... | |
float | SI4844::getFrequency (void) |
Get the current frequency of the radio in KHz. More... | |
bool | SI4844::hasStatusChanged (void) |
Checks whether the SI4844 has its status changed. More... | |
void | SI4844::resetStatus (void) |
set the interrupr status to false. It will turn true after next interrupr More... | |
void | SI4844::setCustomBand (byte, uint16_t, uint16_t, byte) |
This method allows you to customize the frequency range of a band. More... | |
void | SI4844::setAmSoftMuteMaxAttenuation (uint8_t value) |
Sets AM Soft Mute Max Attenuation.. More... | |
void | SI4844::setFmSoftMuteMaxAttenuation (uint8_t value) |
FM Soft Mute Maximum Attenuation. More... | |
void | SI4844::setFmDeemphasis (uint8_t value) |
Sets de-emphasis time constant. More... | |
|
inline |
Set the Data Status From Device.
It is a flag that means the device triggered an interrupt.
You can use this function to back the flag status to false. This way you can check when the device triggers the next interrupt.
It is very useful when the user wants to control the interrupt instead of give this control to the library.
value | true or false |
|
inline |
Get the Data Status From Device.
It returns true when the device has triggered an interrupt.
|
inline |
Gets the current audio volume level.
|
inline |
Get the Band Mode.
|
inline |
Get the Stereo Indicator.
void SI4844::setProperty | ( | uint16_t | propertyNumber, |
uint16_t | parameter | ||
) |
Sends (sets) property to the SI48XX.
This method is used for others to send generic properties and params to SI4844
propertyNumber | property number (example: RX_VOLUME) |
parameter | property value that will be seted |
uint16_t SI4844::getProperty | ( | uint16_t | propertyNumber | ) |
Gets a given property from the SI4844.
This method is used to get a given property from SI47XX
You might need to extract set of bits information from the returned value to know the real value
propertyNumber | property number (example: RX_VOLUME) |
void SI4844::sendCommand | ( | uint8_t | cmd, |
int | parameter_size, | ||
const uint8_t * | parameter | ||
) |
Sends a given command to the SI4844 device.
This function can be useful when you want to execute a SI4844 device command and it was not implemented by this library.
Also, you need to work with bit operators to compose the parameters of the command [ &(and), ˆ(xor), |(or) etc ].
cmd | command number (see PROGRAMMING GUIDE) |
parameter_size | Parameter size in bytes. Tell the number of argument used by the command. |
parameter | uint16_t byte array with the arguments of the command |
void SI4844::getCommandResponse | ( | int | response_size, |
uint8_t * | response | ||
) |
Returns with the command response.
After a command is executed by the device, you can get the result (response) of the command by calling this method.
response_size | num of bytes returned by the command. |
response | byte array where the response will be stored. |
void SI4844::setup | ( | uint16_t | resetPin, |
int | interruptPin, | ||
byte | defaultBand | ||
) |
Initiates the SI4844 instance and connect the device (SI4844) to Arduino.
Calling this library should be the first thing to do to control the SI4844.
If interruptPin is -1, it means you will control interrupt in your sketch.
In this case, you have to call interrupt_hundler() (see SI4844.h)
resetPin | arduino pin used to reset the device |
interruptPin | interruprPin arduino pin used to handle interrupt |
defaultBand | band that the radio should start |
References SI4844::getFirmware(), and SI4844::reset().
void SI4844::debugDevice | ( | uint16_t | resetPin, |
uint16_t | interruptPin, | ||
uint8_t | defaultBand, | ||
void(*)(char *msg) | showFunc | ||
) |
Used to debug
use this function instead setup to check your implementation
resetPin | same call setup; |
interruptPin | same call setup |
defaultBand | same call setup |
showFunc | function of your sketch that will be called to show something |
References SI4844::getFirmware(), and SI4844::reset().
void SI4844::reset | ( | void | ) |
Resets the SI4844 device.
Prepares the system to be started.
Referenced by SI4844::debugDevice(), SI4844::setBand(), and SI4844::setup().
void SI4844::powerDown | ( | void | ) |
Power the device down.
Moves the SI4844 device from power up to power down mode.
void SI4844::powerUp | ( | void | ) |
Power the device up.
Moves the SI4844 device from power down to power up
void SI4844::setBand | ( | byte | new_band | ) |
Sets a new band to the device.
This method is used to select a band
new_band | band number. |
References SI4844::getStatus(), and SI4844::reset().
void SI4844::changeVolume | ( | char | command | ) |
void SI4844::volumeUp | ( | void | ) |
Increases the volume level.
void SI4844::volumeDown | ( | void | ) |
Decreases the volume level.
void SI4844::setVolume | ( | byte | volumeLavel | ) |
Sets the volume level.
Sets a value to the audio volume.
byte | volumeLevel (domain: 0 to 63) |
byte SI4844::getVolumeProperty | ( | ) |
void SI4844::setBassTreble | ( | uint8_t | bass_treble | ) |
Set the sound volume level, bass and treble.
bass_treble | Description |
---|---|
0 | Bass boost +4 (max) |
1 | Bass boost +3 |
2 | Bass boost +2 |
3 | Bass boost +1 (min) |
4 | Normal (No Bass/Treble effect) (Default) 5- Treble boost +1 (min) |
6 | Treble boost +2 |
7 | Treble boost +3 |
8 | Treble boost +4 (max) |
bass_treble | bass and treble (domain: 0 to 8). See table above |
void SI4844::bassTrebleDown | ( | ) |
Less treble, more bass.
void SI4844::bassTrebleUp | ( | ) |
More treble, less bass.
si4844_audiomode_status_response SI4844::setAudioMode | ( | uint8_t | audiomode, |
uint8_t | fm_mono, | ||
uint8_t | adjpt_attn, | ||
uint8_t | adjpt_steo, | ||
uint8_t | opcode | ||
) |
Set audio mode.
byte | audio_mode 0 = Digital volume mode (no bass/treble effect, volume levels from 0 to 63) 1 = Bass/treble mode (no digital volume control, fixed volume level at 59) 2 = Mixed mode 1 (bass/treble and digital volume coexist, max volume = 59) 3 = Mixed mode 2 (bass/treble and digital volume coexist, max volume = 63) Default is 3 (Mixed mode 2). |
byte | fm_mono 0 = Stereo audio output (default) 1 = Mono audio output |
byte | adjpt_attn Audio attention of adjacent tune wheel positions of a station 0 = {–2 dB, -0dB, –2 dB} i.e., adjacent points volume levels –2 dB (default) 1 = {–0 dB, -0dB, –0 dB} i.e., adjacent points same volume levels |
byte | adjpt_steo 0 = Adjacent points allow stereo separation and stereo indicator on (default) 1 = Adjacent points disable stereo separation and stereo indicator are off |
byte | opcode 0 = Set audio mode and settings 1 = Get current audio mode and settings without setting |
void SI4844::audioMute | ( | uint8_t | value | ) |
Mutes the audio output.
value | value 0 = normal (no mute); 1 = Right side mute; 2; Left side mute; 3 = both side |
void SI4844::setAudioMute | ( | bool | on | ) |
Mutes the audio output.
bool | on false = normal (no mute); true = mute |
si4844_status_response * SI4844::getStatus | ( | void | ) |
Get tune freq, band, and others information, status of the device.
Use this method only if you want to deal with that information by yourself.
This library has other methods to get that information easier.
Referenced by SI4844::getFrequency(), SI4844::setBand(), and SI4844::setCustomBand().
si4844_firmware_response * SI4844::getFirmware | ( | void | ) |
Get part number, chip revision, firmware, patch, and component revision numbers.
You do not need to call this method. It is executed just once at setup methos.
There are other methods that give you that information.
Referenced by SI4844::debugDevice(), and SI4844::setup().
float SI4844::getFrequency | ( | void | ) |
Get the current frequency of the radio in KHz.
For example: FM, 103900 KHz (103.9 MHz); SW, 7335 KHz (7.34 MHz, 41m)
References SI4844::getStatus().
bool SI4844::hasStatusChanged | ( | void | ) |
Checks whether the SI4844 has its status changed.
Actually it checks if the device triggered an external interruption due to some internal event.
For example: If you move the tuner, the status of the device is changed.
void SI4844::resetStatus | ( | void | ) |
set the interrupr status to false. It will turn true after next interrupr
void SI4844::setCustomBand | ( | byte | bandIndex, |
uint16_t | botton, | ||
uint16_t | top, | ||
byte | bandSpace | ||
) |
This method allows you to customize the frequency range of a band.
The SI4844 can work from 2.3–28.5 MHz on SW, 64.0–109.0MHz on FM
You can configure the band index 40, for example, to work between 27 to 28 MHz.
(top – button)/(bandSpace) must be betwenn 50 and 230
bandIndes | Predefined band index (valid values: betwenn 0 and 40) |
button | Band Bottom Frequency Limit |
top | Band Top Frequency Limit |
bandSpace | Channel Spacing (use 5 or 10 - On FM 10 = 100KHz) |
References SI4844::getStatus().
void SI4844::setAmSoftMuteMaxAttenuation | ( | uint8_t | value | ) |
Sets AM Soft Mute Max Attenuation..
Maximum attenuation to apply when in soft mute. Specified in units of dB. Default maximum attenuation is 16 dB.
Set to 0 to disable soft mute. Valid range: 0 - 63.
value | number between 0 and 63 |
void SI4844::setFmSoftMuteMaxAttenuation | ( | uint8_t | value | ) |
FM Soft Mute Maximum Attenuation.
Maximum attenuation to apply when in soft mute. Specified in units of dB. Default maximum attenuation is 16 dB.
Set to 0 to disable soft mute. Valid range: 0 - 31.
value | number between 0 and 31 |
void SI4844::setFmDeemphasis | ( | uint8_t | value | ) |
Sets de-emphasis time constant.
Sets the FM Receive de-emphasis to 50 or 75 μs. Default is 75 μs.
value | 1 = 50 μs. Used in Europe, Australia, Japan, China; 2 = 75 μs. Used in USA |