kaiss:
i want to declare in the top of my programm with , behind the int
Just create some variables
int maxFreq = 1150;
int minFreq = 1000;
and then use this style to check the frequency
if (freq >= minFreq && freq <= maxFreq)
...R
kaiss:
i want to declare in the top of my programm with , behind the int
Just create some variables
int maxFreq = 1150;
int minFreq = 1000;
and then use this style to check the frequency
if (freq >= minFreq && freq <= maxFreq)
...R