I am creating an IOT device where the user can set a particular time to trigger an action by an IOT device. For eg: At 01:00 PM, the Air Conditioner starts automatically. In this case, user will set 01:00PM in the Mobile App which will further be stored the value in a database table.
Now i need to read these database values and trigger an Azure function that will switch on the A/C, but this process is complex since i need to write my own scheduler. Is there any alternate way, perhaps using Azure Timer Functions.
Thanks