Crimson Cube

About This Project

This project was created by myself and three other students over 36 hours at HackHarvard, a hackathon hosted by Harvard University. This project stemmed from the difficulties faced by children with disabilities that affect communication such as autism - specifically in the educational system. The Crimson Cube allows children to use tactile features such as buttons, dials and switches to convey their emotions and feelings. These inputs are displayed on a web app and can be used to understand the child's sentiments towards certain activities or simply general well-being throughout the day.

I handled the hardware aspect of the project by integrating the NodeMCU ESP8266 microcontroller with the physical inputs. These inputs were then sent to a Firebase server to be used as data to populate the web app.

Initial Brainstorming

Before we began this project, we wanted to create something that could positively impact those often marginalized by the educational system. We came up with the idea for the Crimson Cube to hopefully merge our hardware experience with an impactful idea.

Our initial idea was to run all the inputs, outputs and WiFi module off of the NodeMCU microcontroller for simplicity. This was not possible upon the conclusion of the Hackathon due to issues outlined below.

Hardware Utilized

We decided to use the following hardware in addition to the NodeMCU ESP8266 and Arduino UNO due to reasons outlined below:

  • Rotary encoders: These were used for the dial as well as the buttons as they produce a HIGH signal when they are pushed in. Due to their versatility, they could be used in multiple settings. A downside with these was that they require 3 input pins to be fully used or 2 pins for just the rotation which added up to 11 total pins just for rotary encoders.

  • Two-position switch: These were used for demonstrating the like/dislike function. They were relatively easy to setup and only require 1 input pin which helped reduce input load. Unfortunately, the do not insert into a breadboard and must be soldered to be used which makes prototyping slightly more difficult.

  • RGB LEDs: These were necessary due to our design requirement of a physical output. In addition to data being displayed on the web app, we wanted the Cube itself to display information through RGB LEDs. Depending on what input was pressed, the LEDs would flash a different colour. The LEDs were also intended to show that the Cube was waiting for input by pulsing white.

WiFi Connectivity & NTPClient

Connecting to the internet to push to Firebase was done by utilizing the ESP8266WiFi library. The NodeMCU connected to a personal hotspot hosted by a laptop which allowed for a connection that only required an SSID and password. This was done as the existing networks in the area required an SSID as well as username and password.

As our design requirements included a time and date stamp for each input (which was required for effectively displaying information on the front end), we had to pull instantaneous time stamps. This was done through the NTPClient library. The ESP8266 would connect to the server and pull date and time information. A function was then written to pull time stamps whenever an input was activated.

Firebase

We considered many different methods of uploading data from the Cube itself to the front end such as creating our own database through MySQL. However, we ended up using the FirebaseArduino library to call the Firebase API from the ESP8266 which simplified the process. This method also required the ArduinoJSON library as Firebase stores data in JSON format. The library allowed us to package each input with a time and date stamp into a JSON object which would then be pushed to Firebase.

Challenges

Throughout the project there were many issues that occurred with the hardware. One of the largest issues was that we did not have an external power supply such as a battery for the NodeMCU or the Arduino. It was not feasible for us to bring one with us to the Hackathon due to airline regulations. Due to this, all the inputs, outputs and the WiFi module were run off the boards themselves. As expected, they were not able to power all these components simultaneously and the boards failed. In order to complete the Hackathon with a semi-complete project, we decided to split the inputs onto the Arduino inside the housing and the data transfer onto the NodeMCU. The Arduino separately handled inputs and outputted the relevant information on it's LEDs while the NodeMCU lived on a breadboard with buttons to demonstrate data transfer to the Firebase server.

Another issue we encountered was the limitations of the physical pins on the NodeMCU and Arduino. Due to the large amount of inputs and outputs we had, it was not possible to incorporate all elements of the project. In addition to this, the NodeMCU has many GPIO pins which have to be held in certain positions on either boot or throughout the program or else it will crash or get stuck in bootloader mode. This further reduced the available pins and made integrating all features very difficult.

A significant bug I encountered was errors outputted on the serial monitor due to the watchdog timer. At the time, I was unfamiliar with watchdogs and did not realize I was repeatedly triggering the hardware watchdog. This was due to implementing another members code which was not completely compatible with mine and creating an infinite loop. Eventually I solved the issue by eliminating the loop and was able to continue. These bugs were also littered around various compiler issues within the Arduino IDE which made them very challenging to pinpoint.

Result

By the conclusion of the Hackathon, we were able to complete the separate components of the project but did not complete full integration. The Cube operated independently with its inputs and outputs but did not push data to the server. However, we were able to simulate the Cube's operation by placing the NodeMCU on a separate breadboard and wiring buttons that represented different inputs. These inputs would then push packages to the server which would update the web app.

Overall, this was an incredible learning experience and a ton of fun! Although there were still some integration issues to debug, I was very satisfied with how much we completed in such a short amount of time. The GitHub repository is located here and the HackHarvard submission on Devpost is located here.

Web App