Fire trigger on automation

i have a temperature/humidity sensor ts0201, im trying to create a automation to fire notification on my lg webos tv every time the temperature changes(up or down, any value), everything is working fine except the trigger… im a beginner on home assistant and maybe the solution is obvious but need some help… thank you

- id: '1615751231027'
  alias: temp_notify
  description: ''
  trigger:
  - type: temperature
    platform: device
    device_id: 2596c383687cd91677ca3d9bef85d9ea
    entity_id: sensor.sensor_temperature
    domain: sensor
    below: 100
  action:
  - service: notify.lgtv
    data:
      message: '{{ (state_attr("sensor.sensor_temperature", "temperature")) }}'
  mode: single

Hi there. In this particular case instead of using a device type trigger, you can use a numeric state type of trigger. It should work fine for you. Please try this.

- id: '1615751231027'
  alias: temp_notify
  description: ''
  trigger:
  - platform: numeric_state
    entity_id: sensor.sensor_temperature
    below: '100'
  action:
  - service: notify.lgtv
    data:
      message: '{{ (state_attr("sensor.sensor_temperature", "temperature")) }}'
  mode: single

Thank you for the answer, i use numeric_state as you suggested, but unfortunately doesn’t trigger my automation…

After some trial and error i found one solution, used type trigger state it work well. Thank you! i will left the code for someone who needs.

- id: '1615751231027'
  alias: temp_notify
  description: ''
  trigger:
  - platform: state
    entity_id: sensor.sensor_temperature
    attribute: temperature
  action:
  - service: notify.lgtv
    data:
      message: {{ (state_attr("sensor.sensor_temperature", "temperature")) }}
  mode: single