'How to get minut sensor data every 15 minutes

I have hosted my website which uses C# onto the azure cloud, the website needs me to click on the button whenever I wanted to get the latest sensor update, I am wondering if I am able to get the sensor update every 15 minutes from Monday to Friday only without clicking a button?



Solution 1:[1]

A lot of this will depend on exactly what/how you are interacting with elements. But for something that is scheduled, especially on a frequency as you mention creating a WebJob that goes along with your web application and is set to a 15 minute interval is most likely the best option to get the scheduling with the least effort.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Mitchel Sellers