Hardware Reference
In-Depth Information
Engage thrusters
Let's say a person has to take his/her prescribed pills at 9:30 in the morning; a buzzer can be
triggered using the datetime module in Python:
while True:
t = datetime.datetime.now()
if t.hour == 9 and t.minute == 30:
async_task = AsyncTask()
async_task.add_callback()
thread = Thread(target=async_task.run, args=())
thread.start()
break
Other project ideas
Similar to the examples discussed earlier, it is also possible to set reminders to sync pedometer
data, go to the gym, or even record the health parameters discussed earlier in this project.
Objective complete - mini debriefing
In this task, we completed the pillbox reminder set up to help us take our medicaion on ime.
Mission accomplished
In this project, we discussed several examples of Raspberry Pi acing as a personal health
monitor using a simple concept. This can be adapted for different scenarios according to
your creaivity.
Hotshot challenge
How can we use Raspberry Pi to enhance the lives of senior ciizens?
 
Search WWH ::




Custom Search