Binary Sensor not working

Hi

I have an esp32 device running bluetooth proxy ad a status binary sensor. The binary sensory is not showing in home assistant. I have tried removing and adding again but nothing.

I’m running 2023.6.3. yaml below:

substitutions:
  name: "espbluetoothproxy1"
  friendly_name: "Living Room TV ESP32"

esp32:
  board: wemos_d1_mini32
  framework:
    type: esp-idf
    version: recommended

logger:

#packages:
#  esphome.bluetooth-proxy: github://esphome/bluetooth-proxies/esp32-generic.yaml@main
esphome:
  name: ${name}
  name_add_mac_suffix: false
  friendly_name: ${friendly_name}
# Enable Home Assistant API
api:
  encryption:
    key: "otCkuRgldzHdx4oBIxzLut+q4YDebPvPh6AbECsjqFo="

ota:
  password: "022bcde456865d69635c1a9b9640c81a"

wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password

  
  ap:
    ssid: "Esp32-Bluetooth-Proxy-1"
    password: "botJhap8YN4C"

binary_sensor:
  - platform: status
    name: "Finlux TV Status"
    

esp32_ble_tracker:
  scan_parameters:
    interval: 1100ms
    window: 1100ms
    active: true

bluetooth_proxy:
  active: truetype or paste code here