DEV Community

Cover image for Building a DIY ADHD Medication Reminder with Azure Functions & Twilio
Chloe Condon 🎀 for Microsoft Azure

Posted on • Updated on

Building a DIY ADHD Medication Reminder with Azure Functions & Twilio

Lately, I've been playing around with Azure Functions to automate different parts of my life. Just today, as I was building a demo using Functions for an upcoming work project, I looked up at the clock and discovered it was 4pm.

🙋‍♀️ The Good News: Time flies when you're coding!

🤦‍♀️ The Bad News: I do not function as well without my ADHD medication and well… I forgot to take my ADHD medication.

Here’s the thing about us folks with ADHD- we have trouble with our working memory. If you’re unfamiliar working memory it is the part of our memory that is able to keep information long enough to remember what’s next, stay focused on a task, or use info in the short term (you can think of it like a cache). For example, when I’m telling a story I’ll often get excited, go on a tangent, my brain runs it's garbage collector, and completely forget what I was originally talking about. Also, I often have to look at the weather/ask our Google home for it 2–3 times before I remember the temperature for the day. Let’s just say I’m not Dori from Finding Nemo-level forgetful but… I’ve been known to completely forget important things in the moment, especially tasks like taking my medication twice a day. 😣 Perhaps that’s why I began to feel like my brain was moving slower this afternoon, eh?

So, I stopped what I was doing, took a half pill (I didn’t want to be up until 1am 😳), and wrote up this handy guide on building your own ADHD medication (or, whatever you’d like to be reminded about) reminder with Azure Functions.

Let’s Build It (before we forget to 😅)!

Step 1: Create an Azure Function

For the sake of easy to understand visuals/screenshots I used the Azure portal to create this. You can also use VS Code, the Azure CLI, etc.​ With Azure Functions you are given the the ability to code and test Functions locally on your machine without having to deploy to the cloud every single time you want to test (a huge time saver!).

To create an Azure Function, you can just start from the Get Started menu and select Function App.

Then you’ll need to fill in some basic info about your function here. Including the app name, the Azure subscription you’d like to use, a resource group (I’m creating a new one in this case), the Operating System you’d like to use, the hosting plan (I’m using consumption), the location I’d like to use (I’m in California, so West US 2 is usually my default), the runtime stack I’d like to use (I’m using JavaScript in this case), and I have the option to create new storage or use existing. I created a new one in this case.​​

Once I have all these filled out, I can go ahead and deploy! Wait about a minute or two, then watch for the Deployment succeeded message.​

If you followed those steps, we have our resource! We’ll just select “Go to resource” to view your new Function App.​ Now we’ll add a new function.

When you select Trigger Timer, a prompt will appear asking for the Name of your function, as well as the Schedule for your trigger. I’ve put “0 0 15 * * ” so my reminder will be sent at 3pm (*NOTE: check out the timestamp in your logs- Azure uses Coordinated Universal Time- UTC).

But how will this reminder be sent? Wouldn’t it be great if you had a personal assistant who could text you daily to check-in to see if you’ve taken your pills? Well, while we don’t have time to build a robot assistant to go do a coffee run for us, we can use the Twilio API to text us about it! You’ll need to create a Twilio account to do this, and grab the SID and Auth Token from there once created (☎️ you can sign up for Twilio and get $20 with my personal code: CHLOE20). I highly suggest adding these to your app settings immediately so they are secure (vs. adding them directly to your code).

Step 2: Integrate with Twilio

You’ll need to add your RECIPIENT_NUMBER, SENDER_NUMBER (I am using a phone number I purchased from Twilio) as well as TWILIO_TOKEN and TWILIO_SID to your Application settings under Configuration. As I mentioned before, I highly suggest adding these to your app settings vs. adding them directly to your code, so they are secure. If you’re looking for a good video walkthrough on the how/why of Azure app settings, check out this video with Scott Hanselman and Stefan Schackow.

You’ll also need to make sure you have Twilio installed. You can simply enter the following in your terminal.

npm install twilio

Step 3: Write some code (quickly, before we get too distracted! 😅)

Here’s a look at the code 👉 index.js

As you can see, I have created a function that checks if my timer is past due (if so, I write that to my logs). Then, I’m creating a message (.create) that will be sent from SENDER_NUMBER, includes the body of my message, and will be sent to RECIPIENT_NUMBER. If all goes according to plan, ‘Text sucessfully sent’ will be written to my logs. Otherwise, I am logging the error.

Alternatively, you can set up bindings in a function.json file. You can take a look at a Gist I made of those here. Bindings can also be edited and updated through the Integrate section of the Azure portal like so:

However, with the code we’ve written, we do not need bindings set up- we can simply call the function, and reference the variables (SENDER_NUMBER, TWILIO_SID, etc.)from our app settings.

As you can see, it’s pretty simple. Create a text message, send it, and ta-da — reminder sent! But there’s a problem… sometimes I get so distracted or focused on a task that I won’t see a text (also, I get a lot of notifications on my phone- what if I don’t notice it? 😬). So, I decided to add a back-up plan… a phone call!

The code for making a phone call is similar to sending a text message, with a few minor changes.

Here’s a look at the code 👉 index.js

You’ll notice that the code for our phone call refers to ‘TWIML_URL’. This is referring to a URL in my application settings that links to a TwiML Bin which I have set up in Twilio. A TwiML Bin allows us to create static TwiML documents. They provide us with a private URL that we can then use to configure our Twilio SMS messages or Voice webhooks. In this case, I’m using a TwiML Bin](https://www.twilio.com/docs/runtime/tutorials/twiml-bins) to hold the logic for what should occur during the call.

You can create interactive voice and messaging applications using TwiML. Here is an example of how I am using it for my call:

The URL provided at the top of the TwiML Bin page is the URL I have secured in my app settings as TWIML_URL (referred to in index.js for the phone call reminder function). You’ll notice I’m using syntax similar to Markdown in the TwiML Bin. It will say a message with a pill reminder (using ), and then play an MP3 (using ). The Mp3 is optional, but I decided I wanted a message to play for a minute or two, allowing me to find my pill box, take the pill, and hang up when I’m done. What’s the Mp3? Well, here’s a demo of it in action:

The MP3 is being hosted by Twilio through Assets. To create a new Asset, simply press the + button to upload a MP3 (you could also use Twilio Assets to add an image to your reminder text if you wish!). This asset is an MP3 of Shia LaBeouf yelling a motivational speech, but you can make the MP3 a song, message from yourself, or any other sound you wish!

Step 4: Test it out (before we get distracted by another project)!

Finally, we need to test out our Trigger Timer! If you’d like, you can add your Twilio number to the contacts in your phone. I named mine “💊👩🏻‍⚕️💊”, but you can make yours discrete if you wish (Grandma/Dad/Cousin/Jennifer work just as well!). That way, when a call comes through at your set time, you know what it is.

To test your call/text, you can simply press the Run button in the Azure portal in each function (located at the top of your index.js file next to Save). However, you’ll also want to test out the timer to make sure the text/call is firing off at the correctly specified time. It is likely that whatever time you chose to have your call/text send is set to a time that has either passed, or has not happened yet. You can edit the timer for your function in your function.json file, or click over to Integrate to edit it in the portal.

A quick important note to avoid confusion: check the timestamp in your logs to help determine the correct cron expression to include (otherwise, your alert may send at an incorrect time!). You’ll want to make sure that your time corresponds to the Coordinated Universal Time (UTC) Azure uses.

Step 5: Set it and forget it! ⏰

If your function works, and is sending at the correct time- congrats, you built an Azure Trigger Timer! 🎉 Feel free to customize the code however you’d like to help automate reminders for yourself, or if you’re looking for something more on-demand, you can take a peek at my article on creating a fake boyfriend call/text using Twilio + Azure here. Happy coding!

Top comments (8)

Collapse
 
xowap profile image
Rémy 🤖

I don't want to sound too political but as someone with ADHD it's a bit awkward to see the use of drugs advertised (outside of the US, nobody takes Adderall). I find that a good todo list is a much better starting point :)

Collapse
 
permorten_s profile image
Per-Morten Straume

Just wanted to chime in and say that as someone with ADHD I don't consider it awkward. I find it more awkward to insinuate that nobody takes drugs to treat ADHD outside of the US (if I am interpreting you correctly). I am not from the US, and quite dependent on drugs to treat my ADHD properly, and I know a lot of other people who are too. If you can manage with just todo lists, that's great, but please let others treat their ADHD in the way that works for them because you sound a bit judgemental :)

Collapse
 
chloecondon profile image
Chloe Condon 🎀

Interesting- I couldn't function without my Adderall! 💊

Collapse
 
seangwright profile image
Sean G. Wright

Cool/creative idea and walkthrough. Also, your gif work is on-point here!

Collapse
 
chloecondon profile image
Chloe Condon 🎀

Thanks! I like to say "I minored in gifs in college" 😅

Collapse
 
softcoda profile image
Justin

Neat and precise👌. I really love your article.

Collapse
 
chloecondon profile image
Chloe Condon 🎀

Thanks! 😁

Collapse
 
charlyn profile image
Charlyn Gonda

Excellent idea and brilliant execution!! I love the pause right before the first “just do it!” 😂