Overview
This device effectively reminds you to put in your contacts lenses when you wake up.

Back View: One port to reprogram and another for power

Sample LEDs that blink to remind the user

Switch that detects presence of phone
Process Review
One decision point during the process was the choice between using a real time clock or simply another switch to determine when the reminder would be able to activate. If I were to use a switch that the user would have to turn on and off, the device would be more accurate in determining when the user goes to bed, but it’s manual and not automatic which runs the risk of the user forgetting to flip the switch. The real time clock allows the device to automatically know when the user should be asleep based on the time it is set, but the accuracy of the timing relies on the consistency of the user’s sleep schedule. In the end, I decided that the clock has enough accuracy to pinpoint when the user would go to bed, and it’s automatic quality would be more desired.

Here is an early prototype with the switch

This is part of the final build with the DS3231 module (Clock) attached to protoboard
Another decision point was how the phone button would be optimally implemented into the final build of the device without creating flaw in the design. This was significant because if the button wasn’t efficient in detecting the phone, the whole device would be compromised. I luckily discovered that I could use the inter-structure of cardboard to have space for wires and a place for the button to show to be pressed. This allowed the button to be fully functional without any wires showing.

Very early build of phone button

One side of the fed through wire for phone button

Another side of wire fed through cardboard for phone button
Progress Pictures (cont.)

Backside of protoboard

Front side of protoboard
Discussion
Responses:
“I think that the form of the box could be modified to fit the shape and size of the phone more. Is there a way to set the way that the LEDs blink on the fly? The rapid flashing seems like it would be a lot at 8AM.”
Now that I’m looking back on it, a holder for the phone would have been extremely useful and convenient. This would help prevent the phone from somehow falling off or moved enough where the button isn’t triggered anymore. The point of the presence of a phone triggering the LEDs rather than simply at a set time was to increase accuracy in determining when the LEDs turn on. My thinking was that everyone goes everywhere with their phone, and we often have varying schedules, so your phone would act as a better key when you wake rather than time. The purpose of the clock was implemented to automatically “set” the device and to “unset”. Also, the rapid flashing of the LEDs was intended to cause as much annoyance as possible to force the user to remember to put in their contact lenses.
“The minimalistic interface does keep it simple for users, which is always a plus, especially if the users are tired, college students.”
The key characteristics I wanted to highlight in this device were simplicity and effectiveness, so I’m glad that this response and many others indicated the key characteristics. The purpose of implementing these key aspects was because I myself am a tired college student, and lets be honest, I probably wouldn’t need a device to remind me of self-care if I wasn’t a tired college student. That being said I wanted a device where I could roll out of bed and without using my brain, be able to remember to put my contact lenses in, and I think this device does that pretty well.
This device is simple, and it works. I’m satisfied in the aspect that it does everything I wanted it to do. However, after going through the process and gaining feedback, there are many things about my device that could be improved. The core design of the device is good, but each aspect that make up the core design can be improved to produce a much better overall device. I learned how useful peer feedback is. As I went through the process, I had an idea of how to improve parts, but I couldn’t quite make the connection in my head. When I heard feedback from others, I was able to finalize exactly how to improve certain parts. On my next project, I’ll be sure to reach out to more peers during the process of building the device to catch more flaws. The most difficult part of making the device was the design part. This was especially true on the placement of the phone button which I was lucky enough to find a creative spot to put it. I felt like that the design was where I put most of my time into, and in the end, it was the area that could have used the most improvements. I think next time I should make more frequent and less time consuming prototype design builds in order to eliminate more flaws. I don’t plan on building another finalization of this device, but I know how I would improve it if I did. First, I would design a holder to keep the phone in place when placed onto the button. Also, I would change the button placement to be under the middle of the phone rather than on one of its sides. Finally, some of the parameters should be modified in the software to more accurately determine when the device needs to be set. Right now, it only takes in account the hour, but it could also consider the minutes of the hour.
Schematic
Code
- <span class="com">// Contact Lens Reminder</span><span class="pln">
- </span><span class="com">// Leland Mersky</span><span class="pln">
- </span><span class="com">// </span><span class="pln">
- </span><span class="com">// This code runs a reminder system in the morning (or any desired</span><span class="pln">
- </span><span class="com">// time) that will blink LED's once you take your phone off it to</span><span class="pln">
- </span><span class="com">// get up and on with your day. It'll shut off at a set time when</span><span class="pln">
- </span><span class="com">// you're not expected to be at home and have no use for it.</span><span class="pln">
- </span><span class="com">//</span><span class="pln">
- </span><span class="com">// Digital</span><span class="pln">
- </span><span class="com">// Red LED Pin 2</span><span class="pln">
- </span><span class="com">// Green LED Pin 3</span><span class="pln">
- </span><span class="com">// Blue LED Pin 4</span><span class="pln">
- </span><span class="com">// Phone Button Pin 5</span><span class="pln">
- </span><span class="com">#include</span><span class="pln"> </span><span class="str"><DS3231.h></span><span class="pln">
- DS3231 rtc</span><span class="pun">(</span><span class="pln">SDA</span><span class="pun">,</span><span class="pln"> SCL</span><span class="pun">);</span><span class="pln">
- </span><span class="kwd">const</span><span class="pln"> </span><span class="kwd">int</span><span class="pln"> RED_LED_PIN </span><span class="pun">=</span><span class="pln"> </span><span class="lit">2</span><span class="pun">;</span><span class="pln">
- </span><span class="kwd">const</span><span class="pln"> </span><span class="kwd">int</span><span class="pln"> GREEN_LED_PIN </span><span class="pun">=</span><span class="pln"> </span><span class="lit">3</span><span class="pun">;</span><span class="pln">
- </span><span class="kwd">const</span><span class="pln"> </span><span class="kwd">int</span><span class="pln"> BLUE_LED_PIN </span><span class="pun">=</span><span class="pln"> </span><span class="lit">4</span><span class="pun">;</span><span class="pln">
- </span><span class="kwd">const</span><span class="pln"> </span><span class="kwd">int</span><span class="pln"> PHONE_BUTTON_PIN </span><span class="pun">=</span><span class="pln"> </span><span class="lit">5</span><span class="pun">;</span><span class="pln">
- </span><span class="kwd">void</span><span class="pln"> setup</span><span class="pun">()</span><span class="pln"> </span><span class="pun">{</span><span class="pln">
- pinMode</span><span class="pun">(</span><span class="pln">RED_LED_PIN</span><span class="pun">,</span><span class="pln"> OUTPUT</span><span class="pun">);</span><span class="pln">
- pinMode</span><span class="pun">(</span><span class="pln">GREEN_LED_PIN</span><span class="pun">,</span><span class="pln"> OUTPUT</span><span class="pun">);</span><span class="pln">
- pinMode</span><span class="pun">(</span><span class="pln">BLUE_LED_PIN</span><span class="pun">,</span><span class="pln"> OUTPUT</span><span class="pun">);</span><span class="pln">
- pinMode</span><span class="pun">(</span><span class="pln">PHONE_BUTTON_PIN</span><span class="pun">,</span><span class="pln"> INPUT</span><span class="pun">);</span><span class="pln">
- </span><span class="typ">Serial</span><span class="pun">.</span><span class="kwd">begin</span><span class="pun">(</span><span class="lit">9600</span><span class="pun">);</span><span class="pln">
- </span><span class="typ">Serial</span><span class="pun">.</span><span class="kwd">begin</span><span class="pun">(</span><span class="lit">115200</span><span class="pun">);</span><span class="pln">
- rtc</span><span class="pun">.</span><span class="kwd">begin</span><span class="pun">();</span><span class="pln"> </span><span class="com">//starts the real time clock</span><span class="pln">
- rtc</span><span class="pun">.</span><span class="pln">setDOW</span><span class="pun">(</span><span class="pln">TUESDAY</span><span class="pun">);</span><span class="pln"> </span><span class="com">//set the day of the week</span><span class="pln">
- rtc</span><span class="pun">.</span><span class="pln">setTime</span><span class="pun">(</span><span class="lit">0</span><span class="pun">,</span><span class="lit">20</span><span class="pun">,</span><span class="lit">00</span><span class="pun">);</span><span class="pln"> </span><span class="com">//set the time in hours:minutes:seconds</span><span class="pln">
- rtc</span><span class="pun">.</span><span class="pln">setDate</span><span class="pun">(</span><span class="lit">10</span><span class="pun">,</span><span class="lit">9</span><span class="pun">,</span><span class="lit">2019</span><span class="pun">);</span><span class="pln"> </span><span class="com">//set the date months/days/year</span><span class="pln">
- </span><span class="pun">}</span><span class="pln">
- </span><span class="kwd">void</span><span class="pln"> loop</span><span class="pun">()</span><span class="pln"> </span><span class="pun">{</span><span class="pln">
- </span><span class="typ">String</span><span class="pln"> mytime </span><span class="pun">=</span><span class="pln"> rtc</span><span class="pun">.</span><span class="pln">getTimeStr</span><span class="pun">();</span><span class="pln"> </span><span class="com">//gets the time in a string</span><span class="pln">
- mytime </span><span class="pun">=</span><span class="pln"> mytime</span><span class="pun">.</span><span class="pln">substring</span><span class="pun">(</span><span class="lit">0</span><span class="pun">,</span><span class="lit">2</span><span class="pun">);</span><span class="pln"> </span><span class="com">//only gets the hours part of string</span><span class="pln">
- </span><span class="kwd">int</span><span class="pln"> hour </span><span class="pun">=</span><span class="pln"> mytime</span><span class="pun">.</span><span class="pln">toInt</span><span class="pun">();</span><span class="pln"> </span><span class="com">//turns hours part into an int type</span><span class="pln">
- </span><span class="kwd">int</span><span class="pln"> </span><span class="typ">PhoneButtonState</span><span class="pun">;</span><span class="pln">
- </span><span class="typ">PhoneButtonState</span><span class="pln"> </span><span class="pun">=</span><span class="pln"> digitalRead</span><span class="pun">(</span><span class="pln">PHONE_BUTTON_PIN</span><span class="pun">);</span><span class="pln">
- </span><span class="kwd">if</span><span class="pln"> </span><span class="pun">(((</span><span class="pln">hour</span><span class="pun"><=</span><span class="lit">7</span><span class="pun">)</span><span class="pln"> </span><span class="kwd">and</span><span class="pln"> </span><span class="pun">(</span><span class="typ">PhoneButtonState</span><span class="pln"> </span><span class="pun">==</span><span class="pln"> LOW</span><span class="pun">))){</span><span class="pln">
- </span><span class="com">//set hour to when you want it to be activated</span><span class="pln">
- </span><span class="com">//this is set to turn on no later than 7:59 AM</span><span class="pln">
- </span><span class="com">//because hours can be from 0 to 7</span><span class="pln">
- digitalWrite</span><span class="pun">(</span><span class="pln">RED_LED_PIN</span><span class="pun">,</span><span class="pln">HIGH</span><span class="pun">);</span><span class="pln">
- delay</span><span class="pun">(</span><span class="lit">100</span><span class="pun">);</span><span class="pln">
- digitalWrite</span><span class="pun">(</span><span class="pln">RED_LED_PIN</span><span class="pun">,</span><span class="pln">LOW</span><span class="pun">);</span><span class="pln">
- digitalWrite</span><span class="pun">(</span><span class="pln">GREEN_LED_PIN</span><span class="pun">,</span><span class="pln">HIGH</span><span class="pun">);</span><span class="pln">
- delay</span><span class="pun">(</span><span class="lit">100</span><span class="pun">);</span><span class="pln">
- digitalWrite</span><span class="pun">(</span><span class="pln">GREEN_LED_PIN</span><span class="pun">,</span><span class="pln">LOW</span><span class="pun">);</span><span class="pln">
- digitalWrite</span><span class="pun">(</span><span class="pln">BLUE_LED_PIN</span><span class="pun">,</span><span class="pln">HIGH</span><span class="pun">);</span><span class="pln">
- delay</span><span class="pun">(</span><span class="lit">100</span><span class="pun">);</span><span class="pln">
- digitalWrite</span><span class="pun">(</span><span class="pln">BLUE_LED_PIN</span><span class="pun">,</span><span class="pln">LOW</span><span class="pun">);</span><span class="pln">
- </span><span class="pun">}</span><span class="pln">
- </span><span class="pun">}</span>
Comments are closed.