-
Notifications
You must be signed in to change notification settings - Fork 8
/
TEA5767.cpp
173 lines (150 loc) · 3.31 KB
/
TEA5767.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
TEA5767 FM Radio Library
Using I2C for Communication
big12boy - 2017
*/
#include <Arduino.h>
#include <TEA5767.h>
TEA5767::TEA5767(){
_addr = 0x60;
_lvl = 2; _sel = 0; _staCnt = 0;
_freqH = 0x00; _freqL = 0x00;
_muted = false; _search = false; _up = true; _stby = false; _snc = true;
}
//Send Data to the Module
void TEA5767::send(){
Wire.beginTransmission(_addr);
Wire.write((_muted << 7) | (_search << 6) | _freqH);
Wire.write(_freqL);
Wire.write((_up << 7) | (_lvl & 0x3 << 5) | 0x10);
Wire.write(0x10 | (_stby << 6));
Wire.write(0x00);
Wire.endTransmission();
}
//Get Data from the Module
void TEA5767::get(){
byte wIn;
Wire.requestFrom(_addr, 5);
while(Wire.available() < 5);
wIn = Wire.read();
bool rf = wIn & 0x80;
bool blf = wIn & 0x40;
if(!rf)_rdy = 0;
else if(rf && !blf)_rdy = 1;
else _rdy = 2;
_freqH = wIn & 0x3F;
wIn = Wire.read();
_freqL = wIn;
wIn = Wire.read();
_stereo = wIn & 0x80;
wIn = Wire.read();
_lvl = wIn >> 4;
wIn = Wire.read();
}
//Initialize and get available Stations
short TEA5767::init(short minlvl){
Wire.begin();
findStations(minlvl);
return _staCnt;
}
//Set Functions
bool TEA5767::setFrequency(float frequency){
if(frequency < 87.50 || frequency > 108.00) return false;
unsigned int freqC = (frequency * 1000000 + 225000) / 8192;
_freqH = freqC >> 8;
_freqL = freqC & 0XFF;
send();
return true;
}
void TEA5767::setMuted(bool muted){
_muted = muted;
send();
}
bool TEA5767::setSearch(bool up, int level){
_up = up;
if(level < 1 || level > 3) return false;
_lvl = level;
_search = true;
send();
_search = false;
//send();
return true;
}
void TEA5767::setStandby(bool stby){
_stby = stby;
send();
}
void TEA5767::setStereoNC(bool snc){
_snc = snc;
send();
}
//Get Functions
float TEA5767::getFrequency(){
get();
double freqI = (_freqH << 8) | _freqL;
return (freqI * 8192 - 225000) / 1000000.00;
}
int TEA5767::getReady(){
get();
return _rdy;
}
bool TEA5767::isStereo(){
get();
return _stereo;
}
short TEA5767::getSignalLevel(){
get();
return _lvl;
}
bool TEA5767::isMuted(){
return _muted;
}
//Stations
int TEA5767::findStations(short minlvl){
short llvl = 0;
float lsta = 0.00;
_staCnt = 0;
for(float curfreq = 87.50; curfreq <= 108.00; curfreq+=0.1){
setFrequency(curfreq);
delay(20);
get();
if(_lvl >= minlvl && _stereo){
_stations[_staCnt] = curfreq;
if(lsta >= (curfreq - 0.30)){
if(llvl <= _lvl) _stations[_staCnt - 1] = curfreq;
}
else _staCnt++;
lsta = curfreq;
llvl = _lvl;
}
}
if(_staCnt > 0)setFrequency(_stations[0]);
return _staCnt;
}
float TEA5767::nextStation(){
float sta;
if(_staCnt == 0) return 0.00; //No Stations Stored
else if(_staCnt == 1) sta = _stations[0];
else{
_sel++;
if(_sel >= _staCnt) _sel = 0;
sta = _stations[_sel];
}
setFrequency(sta);
return sta;
}
float TEA5767::previousStation() {
float sta;
if (_staCnt == 0) return 0.00; //No Stations Stored
else if (_staCnt == 1) sta = _stations[0];
else {
_sel--;
if (_sel < 0) _sel = _staCnt - 1;
sta = _stations[_sel];
}
setFrequency(sta);
return sta;
}
short TEA5767::getStations(){
return _staCnt;
}