Winston FrickDrew Firment
Published © MIT

The "I Miss You" IoT Button

With the click of a button, instantly send an "I miss you" message to a loved one.

BeginnerFull instructions provided1 hour5,327
The "I Miss You" IoT Button

Things used in this project

Story

Read more

Code

"I Miss You" Lambda Function

JavaScript
Copy & Paste this Code into your Lambda Function. Make sure to change Phone Number & messages!
'use strict';

const AWS = require('aws-sdk');

const SNS = new AWS.SNS({ apiVersion: '2010-03-31' });
const PHONE_NUMBER = '1-xxx-xxx-xxxx'; // change it to your phone number

exports.handler = (event, context, callback) => {
    
    const momMessages = ['Mom message one','Mom message two'];
    const dadMessages = ['Dad message one','Dad message two'];
    const siblingMessages = ['Sibling message one','Sibling message two'];
    
    console.log('Received event:', event);

    console.log(`Sending SMS to ${PHONE_NUMBER}`);
    
    //uses randomizer to select one of the predefined messages
    var singleClick = momMessages[Math.floor(Math.random()*momMessages.length)];
    var doubleClick = dadMessages[Math.floor(Math.random()*dadMessages.length)];
    var longClick = siblingMessages[Math.floor(Math.random()*siblingMessages.length)];
    var randomMessage = singleClick;
    
    if(event.clickType == "DOUBLE"){
        randomMessage = doubleClick;
    }
    if(event.clickType == "LONG"){
        randomMessage = longClick;
    }
    
    const params = {
        PhoneNumber: PHONE_NUMBER,
        Message: randomMessage,
    };
    // result will go to function callback
    SNS.publish(params, callback);
};

Credits

Winston Frick

Winston Frick

0 projects • 3 followers
Student at the University of Virginia
Drew Firment

Drew Firment

1 project • 3 followers

Comments