How to program the SN761672A

It's frustrating! I connected the last tuner I have and I tried all the suggestions you mentioned above but I only get noise. Connecting and disconnecting the antenna doesn't make that difference. May be I should amplify the IF. I need a code that keeps scanning from 88 to 108 MHz to capture something.
I have this code with the benefit of scanning manually with a rotary encoder but I am not sure where I am scanning may be in te KHz spectrum, I get no reception no matter how I keep turning the resonance dial and the rotary encoder!
This guy here has knowledge: TSA5523 Tuner Modules from PC TV Cards · One Transistor
and from here you can be inspired by the code (main)
MekWeb - Mek's personal web page ● Download - FM receiver with TV tuner with digital tuning
and from here:
FM1216_2

//here is the code for SN761672A TV tuner, I'm assuming you using Arduino nano board.
#include <Arduino.h>
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
#define clk 2 // rotary encoder clk pin
#define dta 3 //rotary encoder dt pin
int CurrentClock =0;
int PreviousClock =0;
uint16_t RF =3604;//3604
uint8_t OSCI =1;
uint8_t lockFlag =0;
void SNTVtuner(uint16_t RF,uint8_t OSCI)
{
uint16_t fpd =0;
Wire.beginTransmission(0x61);
switch (OSCI)
{
case 1 : //Setting for OSCIillator #1 VHF-LO
fpd = (RF + 107) ;
Wire.write(fpd >> 8); //DB1
Wire.write(fpd & 0xFF ); //DB2
Wire.write(0xC0); //CB
Wire.write(0x01); //BB
break;
case 2://Setting for OSCIillator #2 VHF-HI
fpd = (RF + 107) ;
Wire.write(fpd >> 8); //DB1
Wire.write(fpd & 0xFF); //DB2
Wire.write(0xC0); //CB
Wire.write(0x02); //BB
break;
case 3://Setting for OSCIillator #3 UHF
fpd = (RF + 107) ;
Wire.write(fpd >> 8); //DB1
Wire.write(fpd & 0x0FF); //DB2
Wire.write(0xC0); //CB
Wire.write(0x08); //BB
break;
}
Wire.endTransmission();
delay(10);
Wire.requestFrom(0x61,1); //in-lock flag (FL = 1 when the loop is phase-locked)
while (Wire.available())
{
lockFlag = Wire.read();
}
}
void setup()
{
Wire.begin();
lcd.begin(16,2);
lcd.backlight();
pinMode(clk,INPUT_PULLUP);
pinMode(dta,INPUT_PULLUP);
PreviousClock = digitalRead(clk);
SNTVtuner(RF,OSCI);
lcd.setCursor(0,0);
lcd.print("RF:");
lcd.setCursor(3,0);
lcd.print(RF/40.96);
lcd.setCursor(0,1);
lcd.print("OSCI:");
lcd.setCursor(5,1);
lcd.print(OSCI);
lcd.setCursor(10,1);
lcd.print("LF:");
lcd.setCursor(13,1);
lcd.print(lockFlag);
}
void loop() 
{
// put your main code here, to run repeatedly:
CurrentClock = digitalRead(clk);
if(CurrentClock != PreviousClock){
if(CurrentClock != digitalRead(dta)){
RF--;
SNTVtuner(RF,OSCI);
}
else
{
RF++;
SNTVtuner(RF,OSCI);
}
lcd.setCursor(0,0);
lcd.print("RF:");
lcd.setCursor(3,0);
lcd.print(RF/40.96);
lcd.setCursor(0,1);
lcd.print("OSCI:");
lcd.setCursor(5,1);
lcd.print(OSCI);
lcd.setCursor(8,1);
lcd.print("LF");
lcd.setCursor(11,1);
lcd.print(lockFlag);
}
PreviousClock = CurrentClock;
}