Hi, first of all, HA is great! I need some help with Scrape (I am a noob on this Scrape subject), maybe someone can put me in the right direction.
I have a camera which has a built-in thermometer. I can get this temperature value by accessing the follow URL: http://<IP_camera>/?action=command&command=value_temperature
It gives me the following output:
value_temperature: 24.1
I would like to scrap only this value with HA built-in Scrape and use this value as input for a sensor.
If you use select: "pre" then I believe you will get:
value_temperature: 24.1
I don’t know if you can use a better template with scrape tool in this case.
But you could probably use another template sensor which splits the value on space.
I don’t understand why you changed the select. There is no HTML tag named value.
If it’s "value_temperature: 24.4" you want then it’s still the PRE tag just like the OP’s HTML