Goal: minimize pointless waiting – simply know the "right" time to use a shared bathroom in your office.
Occupus is an Arduino-based toilet occupancy notification system, that uses inexpensive wireless radios (nRF24L01+) to communicate occupancy status of one or more bathrooms, to the main display unit, which would be typically located in a common highly visible area.
NOTE: for a detailed discussion and history of this project, please read corresponding blog post: Occupus: bathroom occupancy status communications technology with Arduino
Occupus consists of two logical units:
- Multiple Observer Units, installed in each bathroom. They're based on the set of three sensors, a knob, an LCD serial port for on-premises configuration of the unit, and a wireless nRF24L01+ radio card. Up to 5 observer units are supported (this is a limitation of the radio).
- The Display Unit, which uses LED Matrices to display the status of each bathroom occupancy. This unit can be additionally (and optionally) equipped with an Ethernet shield, in which case a small HTTP web server is started. This reports occupancy status over a simple JSON API. Here is a diagram that explains overall placement and concept.
Observers are responsible for communicating a binary status to the display unit: either occupied or available. The display unit also has third status: disconnected, for each observer unit. But Observers don't have that.
How do Observers determine if the bathroom is occupied? They do so based on the following logic:
- If the light is off, the bathroom is available
- If the light is on, we look at the motion sensor - if it detects movement within the last 15 seconds, the bathroom is considered occupied
- If the motion sensor did not pick up any activity, we then look at the sonar reading.
- If the sonar (which is meant to be pointed at the toilet) is reading a distance below a given threshold, it means someone is sitting there, and so the bathroom is occupied.
- Otherwise, it's available.
All settings and thresholds are meant to be tweaked for each bathroom. This is why Observer unit contains Rotary Knob, and a connector for external serial port, meant to be a Serial LCD Display used only to configure the device, but not after.
Below diagram shows components used in the Observer unit installed in each bathroom.
The Display unit can be certainly implemented in a variety of ways. I chose to use 2 sets of 8x8 LED Matrices, each attached to a Rainbowduino, programmed with DisplayLED sketch. Additional Arduino Uno (which acts as the master for the Rainbowduinos) listens on the wireless network notifications, and based on this information sends one of three possible states to each of the Rainbowduino units (which are assigned to rooms). Possible states are:
- Observer for this room is not connected or down (running pixels animation across the screen)
- Observer is connected, and the room is unoccupied (green "lava-lamp" like texture animation)
- Observer is connected, and the room is occupied (similar to green, but red)
Finally, an optional (but relatively expensive) Ethernet Arduino Shield can additionally serve the status of the occupancy data as a JSON hash over HTTP. When installed, an HTTP server is started at boot, and responds to the requests about twice per second.
Here is a general timeline of how you would implement this sort of system:
- Fork the source code of this repo
- Assemble at least one Observer Unit. Feel free to replace the definitions in modules.h with your own, and map them to the pins of your preference.
- Assemble the most basic Display unit (you can use a couple of LEDs instead of Rainbowduinos to get it working, that's what I did first)
- Load "Display" sketch into the display unit, and Observer sketch into the Observer unit.
- Start them up
- If the LED light on the Observer is blinking red, it means that the Observer is not able to connect to the Display unit. Make sure the connections are right: the reason I chose to use Nano Shield is because RF24 uses 7 pins and I kept mixing them up.
- If they are working, you should be able to see the status of your "bathroom" in the Serial monitor of your Arduino IDE, as well as the status of each Observer unit as printed to Serial monitor by the Display unit.
- Press the rotary knob once to start the configuration process. Your Serial Monitor window will be necessary for seeing the values of your configuration parameters.
- Alternatively, purchase a 16x2 Serial LCD display, and make sure to map the pin correctly in your sketch. This will allow you to see configuration menu and values without having to reconnect Serial Monitor on your computer.
- Eventually you will complete configuration and will have an option to save config (or not), and to stop the radio (or not). All settings (except radio status) are saved to EEPRom of your Arduino card.
- Tweak thresholds in the configuration so that they make sense: e.g. light threshold should be so that when light goes on/off the reading goes above and below the threshold.
Firmware depends on several simple libraries, packaged under the Kiguino Project, and are written to encapsulate access to the sensors, which are all available in another repo, that should be installed into your Arduino libraries folder first.
Here is the full set of dependencies:
Arduino Libs
- SoftwareSerial (output state and options to Serial LCD)
- SPI (communications between components)
3rd Party Libs
- EEPROMEx
- Encoder
- NewPing (for HC-SR04)
- nRF24L01(+) 2.4GHz Wireless Transceiver
- SimpleTimer (for timers and callbacks)
Kiguino Libs: these are all available here https://github.com/kigster/Kiguino/
- RotaryEncoderWithButton (high level rotary encoder abstraction)
- Sonar (wrapper around NewPing)
- LightSensor
- MotionSensor
- SparkfunSerialLCD (wrapper around SoftwareSerial)
Display Unit may also optionally depend on
- Ethernet library
Because all thresholds are extremely room and environment specific, Observer modules should be equipped with a Rotary Encoder Knob (this particular model incorporates a click button, but you can install an extra button if your rotary knob doesn't have one). Using the button, the user can enter a special configuration mode, and tweak all the settings.
To make changes visible to the user of the Observer module, one must have a Serial LCD display to show the feedback and new values. We found Sparkfun LCD to be very easy to use and reliable, and I have been convering most of my Arduino projects to report status data on that serial port. Very useful!
Here is a picture of one of the observer units attached to a debugging console (16x2 LCD Matrix), which is communicated with via a Serial cable. The LCD matrix is optional and can be plugged in/out at any time.
The settings that can be changed are (and are cycled through by pressing the button):
- Light sensitivity (between 0 and 1023): A light reading below the threshold will be considered "dark" and will render the overall status as "unoccupied".
- IR Sensor Delay: This is a delay in milliseconds that "blocks" any reading of the motion sensor after any change was detected (this is so that it does not flicker). Typically set to 5000ms, it means that once motion is detected, the motion sensor reading is considered positive regardless of what the sensor actually reports.
- Sonar Distance (in cm): A distance threshold is used to decide if sonar is detecting someone or not. Values less than the threshold are positive (occupied), while larger values than the threshold are negative (unoccupied).
- Exit Timout (in seconds): If the light was left on, and we detected occupancy, but no longer do – how long should we consider the room still occupied? If you make this number too small, the overall status will flicker as various sensors are triggered, but are then released. Setting this to 10-30 seconds is reasonable. Remember, if the person using the bathroom turns off the light, the timeout is not used.
- Save Settings? Defaults to NO, but if YES is chosen, parameters are saved to EEPROM, so even if the unit reboots they persist and are used moving forward by that unit.
- Disable Radio? Sometimes it's convenient to configure the sensors alone, without the unit attempting to connect to the mothership (the display unit). Set that to YES and radio will temporarily deactivate. This is not saved to EEPROM.
You can read about laser-cut designs I built for Occupus on the blog post Occupus: bathroom occupancy status communications technology with Arduino.
On the right is Occupus Display Unit at WaneloHQ.
curl -v http://172.16.0.90/ --header 'Content-Type: application/json' --header 'Accept: application/json'
> GET / HTTP/1.1
> User-Agent: curl/7.30.0
> Host: 172.16.0.90
> Content-Type: application/json
> Accept: application/json
>
< HTTP/1.1 200 OK
< Content-Type: application/json
< Accept: application/json
< Connection: close
< Refresh: 3
<
[{
"id": 1,
"connected": true,
"status": false
}, {
"id": 2,
"connected": false
}]
All software, sketches, and the box-cutting designs are distributed under the The MIT License (MIT).
I would love to accept ideas and contributions from others! Please follow standard Github process, as described below.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request