How to know if AMS AS3935 Franklin Lightning Sensor is working?

Hello

I am testing the AS3935 Lightning and Storm sensor with a Wemos D1 Mini with this config:

# I2C
i2c:
  sda: D2
  scl: D1
  
# IRQ
as3935_i2c:
  irq_pin: GPIO12

sensor:
  - platform: as3935
  address: 0x03
    lightning_energy:
      name: "Energia Rayo"
    distance:
      name: "Distancia Tormenta"

binary_sensor:
  - platform: as3935
    name: "Alerta Tormenta"

In the log I see this discovery:

[18:26:49][I][i2c:033]: Scanning i2c bus for active devices...
[18:26:49][I][i2c:040]: Found i2c device at address 0x03
[18:26:49][C][as3935_i2c:036]:   Address: 0x03

It seems that 0x03 address is the tipycal address of this sensor but I canĀ“t see any readings in log or in Home Assistant.

If I try to set manually the address I get an error.

Any help would be apreciated.

Kind regards

I have exactly the same problem.
Using a D1, have connected GPIO12 to D6, have VCC -> SI for the i2c selection and not to miss the power 3v and ground.

For i2c i use

i2c:
  scan: True

And for the sensor i use

sensor:
  - platform: am2320
    temperature:
      name: "Outside Temperature"
      filters:
        - offset: -1.5
    humidity:
      name: "Outside Humidity"
      filters:
        - offset: 17
    update_interval: 60s

This is a temp and humid sensor but it should work fine for your application.

Good luck!