Scaling the value of a sensor

Hi, this is my first question so I’m very new.
I am trying to linearize a value from a vibration sensor, I read this sensor through PIN 32. The measurements obtained are the same with or without the filter.
What am I doing wrong?
Thank you so much

# Sensor de Vibracion 1
sensor:
  - platform: pulse_counter
    pin: 32
    name: "Pulse Counter"    
    update_interval: 100ms
    internal: true         
    id: v1
    filters:
      - calibrate_linear:
        - 0.0 -> 0.0      
        - 60000 -> 100.0  
    # Si cambia el Valor
    on_value: 
      then:
        - if:
            condition:
              lambda: 'return id(v1).state >  id(limite_v1);'
            then:
              - logger.log: "Vibracion Detectada !!!"
              - globals.set:
                  id: sensor_vibracion_1
                  value: "1"
            else:              
                - delay: 30s
                -  logger.log: "No Vibracion ................."          
                - globals.set:
                    id: sensor_vibracion_1
                    value: "0"

Logs please?

I enclose the LOG of the App where you can see the values sent by the ESP and not scaled from 0 to 100%, which is what is provided in the program.
Sorry for sending them earlier.
The program is the same as yesterday, without changing anything.

Thanks

rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0018,len:4
load:0x3fff001c,len:1044
load:0x40078000,len:10124
load:0x40080400,len:5828
entry 0x400806a8
[I][logger:243]: Log initialized
[C][ota:465]: There have been 7 suspected unsuccessful boot attempts.
[D][esp32.preferences:113]: Saving 1 preferences to flash…
[D][esp32.preferences:142]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
[I][app:029]: Running through setup()…
[C][pulse_counter:147]: Setting up pulse counter ‘Pulse Counter’…
[C][pulse_counter:061]: PCNT Unit Number: 0
[C][pulse_counter:107]: Filter Value: 13us (val=1023)
[C][wifi:037]: Setting up WiFi…
[D][wifi:384]: Starting scan…
[D][pulse_counter:174]: ‘Pulse Counter’: Retrieved counter: 3529.41 pulses/min
[D][sensor:127]: ‘Pulse Counter’: Sending state 5.88235 pulses/min with 2 decimals of accuracy
[D][pulse_counter:174]: ‘Pulse Counter’: Retrieved counter: 9600.00 pulses/min
[D][sensor:127]: ‘Pulse Counter’: Sending state 16.00000 pulses/min with 2 decimals of accuracy
[D][pulse_counter:174]: ‘Pulse Counter’: Retrieved counter: 12000.00 pulses/min
[D][sensor:127]: ‘Pulse Counter’: Sending state 20.00000 pulses/min with 2 decimals of accuracy
[D][pulse_counter:174]: ‘Pulse Counter’: Retrieved counter: 9000.00 pulses/min
[D][sensor:127]: ‘Pulse Counter’: Sending state 15.00000 pulses/min with 2 decimals of accuracy
[D][pulse_counter:174]: ‘Pulse Counter’: Retrieved counter: 4200.00 pulses/min
[D][sensor:127]: ‘Pulse Counter’: Sending state 7.00000 pulses/min with 2 decimals of accuracy
[D][pulse_counter:174]: ‘Pulse Counter’: Retrieved counter: 2400.00 pulses/min
[D][sensor:127]: ‘Pulse Counter’: Sending state 4.00000 pulses/min with 2 decimals of accuracy
[D][pulse_counter:174]: ‘Pulse Counter’: Retrieved counter: 0.00 pulses/min