ropa1998 / SleepMonitor

This is a simple project that uses Arduino and a Linux-based Single-Board computer to monitor ambient variables that influence your sleep quality. With this information the system can send alarms with insight about your sleeping ambient in order to improve it.

Home Page:https://ropa1998.github.io/SleepMonitor/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sleep Monitor {#mainpage}

This is a simple project that uses Arduino and a Linux-based Single-Board computer to monitor ambient variables that influence your sleep quality. With this information the system can send alarms with insight about your sleeping ambient in order to improve it.

Table of Contents

Getting Started

This is a list of things you will need in order to use this code

  • An Arduino Board (Uno or Nano will do just fine)
    • A DHT11 sensor (Temperature and Humidity)

    • An LDR

    • A 220 Ohms resistor. You can change this but you would need to modify some Arduino source code.

    • Implementing this circuit

      Circuit

  • A Linux-Based Single-Board Computer (We recommend a Raspberry Pi and Raspbian)

Prequsites

First of all, you need to install the software in the Arduino. You can do this in any way you prefer (IDE or console).

The code that must be installed is unifiend_sensors_sm.ino. Remember to have the circuit configuration as shown before. Otherwise you will need to change the code.

After that you will need to connect via USB your Arduino to your SBC.

  • First you must install SQLite3 in your computer. To do so run the following commands, that will install SQLite3 on your SBC.
    • sudo apt-get install sqlite3
    • sudo apt-get install sqlitebrowser
  • Then you will need to run the requirements.txt file. To do that remember to set a virtual enviorment for this app. Then, inside the venv just run pip install --user --requirement requirements.txt. This will leave all the required libraries for the project to work readily installed in your virtual environment.
  • After that you must create yourself a gmail account and set it up to work for app SMTP.
    • Then you must configure your account in the email_sender.py module. For the USERNAME constant write the email of your newly created account. Now open the Python Console and configure keyring to use it in the app.
  • After that you must run two different Python scripts in your SBC, in different consoles. Leave the second one running:
    • create_database.py
    • serial_reader.py

That's it for the prequisites part!

Usage

Now to the interesting part: how do you use this?

First, we must pay attention to the IP direction and the port on which the app is running. This will route us to the project from any local network connected device.

You must learn, by the tool of your choice (we recommend net-tools), your IP direction in your local network.

After that you must run two commands (from the project venv):

export FLASK_APP=hello.py

flask run --host=0.0.0.0

This will allow you to use the project in your local network: you will need to access, from any local network connected device, the IP :5000, which will show you the project working.

Home Page

Sample home page

The first thing you can do is see the actual state of the environment. The colour of the value representing each value tells you how ideal is that value for sleeping

  • Green is ideal
  • Yellow is not so bad
  • Red is not a recommendable value

Sample home page with graphs

You can also see three tables that show you a history of all three variables. They get generated when you ask for the last N registers.

Reports

You can also create your own reports based on dates from a time period you select.

Sample report configuration page

After that, on another page, you will receive a report which you can later download if you wish so.

Sample report

Configure

In order to receive emails with your report after every sleep session you must register the sleeping ranges for every day and the email you want to have the email with the report sent.

Sample config page

Five minutes after your sleep session is over you will receive an email with the report

Sample email page

Contributors

This project exists thanks to all the people who contribute.

License

MIT

About

This is a simple project that uses Arduino and a Linux-based Single-Board computer to monitor ambient variables that influence your sleep quality. With this information the system can send alarms with insight about your sleeping ambient in order to improve it.

https://ropa1998.github.io/SleepMonitor/

License:MIT License


Languages

Language:Python 47.4%Language:HTML 38.9%Language:C++ 8.5%Language:JavaScript 2.9%Language:CSS 2.4%