Skip to content

Commit

Permalink
small update
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaskovacik committed Aug 28, 2018
1 parent e9fb20a commit 7751de7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion BK3254.h
Expand Up @@ -73,7 +73,7 @@
#define BK3254_FM_TUNE_FREQ "SETFM" //SETFM+XXX, XXX : 875 to 1081 set up FM frequency to XXX correct: OK\n / error: ERR\n
#define BK3254_FM_GET_FREQ2 "MRFM" //Query current FM frequency (FM Mode) correct: FM_FQ = xxx\n. xxx: 875-1081(87.5-108.1Mhz) / error: ERR\n ?? wht is diference to FM+GF ?
#define BK3254_FM_GET_PRESET "MMFM" //Query currently selected preset (FM Mode) correct: MFMxx \ n,xx: 01-99 / error: ERR\n
#define BK3254_FM_GET_FREQ_OF_PRESET "MFM" //MFFM+XX, Inquire FM of xx No. A frequency corresponding to (FM Mode) correct: FM_FQ = xxx\n, error: ERR\n
#define BK3254_FM_GET_FREQ_OF_PRESET "MFFM" //MFFM+XX, Inquire FM of xx No. A frequency corresponding to (FM Mode) correct: FM_FQ = xxx\n, error: ERR\n

//Query / feedback commands

Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -49,8 +49,8 @@ Follow this link to arduino.cc: https://www.arduino.cc/en/Guide/Libraries#toc5
|FM+ST\r\n | | FM Stop station search|
|FM+GF\r\n | | Get the current radio frequency | FM_FQ = 875 ~ 1081|
|COM+SFMXX\r\n | | Select FM preset 01-99 | correct: FM_FQ = 998\n / error: ERR\n|
|COM+SETFMXXX\r\n | XXX : 875 to 1081 | set up FM frequency to XXX | correct: OK\n / error: ERR\n|
|COM+MRFM\r\n | | Query current FM frequency (FM Mode) | correct: FM_FQ = xxx\n. xxx: 875-1081(87.5-108.1Mhz) / error: ERR\n|
|COM+SETFMXXXX\r\n | XXX : 875 to 1081 | set up FM frequency to XXXX (0875-1080) | correct: OK\n / error: ERR\n|
|COM+MRFM\r\n | | Query current FM frequency (FM Mode) | correct: FM_FQ = xxx\n. xxx: 0875-1081(87.5-108.1Mhz) / error: ERR\n|
|COM+MMFM\r\n | | Query currently selected preset (FM Mode) | correct: MFMxx \ n,xx: 01-99 / error: ERR\n|
|COM+MFFMXX\r\n | | Inquire FM of xx No. A frequency corresponding to (FM Mode) | correct: FM_FQ = xxx\n, error: ERR\n|

Expand Down
6 changes: 3 additions & 3 deletions example/BK3254/BK3254.ino
Expand Up @@ -99,11 +99,11 @@ void loop() {
Serial.println(F("fmStartSearch F"));
Serial.println(F("fmStopSearch G"));
Serial.println(F("fmGetFreq H"));
Serial.println(F("fmTunePreset X=preset IX"));
Serial.println(F("fmTuneFreq (XXXX=freq) JXXXX"));
Serial.println(F("fmTunePreset XX=01-99 IX"));
Serial.println(F("fmTuneFreq (XXXX=0981-1080 JXXXX"));
Serial.println(F("fmGetFreq2 K"));
Serial.println(F("fmGetPreset L"));
Serial.println(F("fmGetFreqOfPreset X=preset MX"));
Serial.println(F("fmGetFreqOfPreset XX=01-99 MX"));
Serial.println(F("getAddress N"));
Serial.println(F("getPinCode O"));
Serial.println(F("getName P"));
Expand Down

0 comments on commit 7751de7

Please sign in to comment.