Sunrise Lamp

IMG_5107.jpg
Sunrise Lamp Wiring Diagram

Sunrise Lamp Wiring Diagram

About

Sunrise lamp is a connected lamp that simulates sunset and sunrise in order to help individuals have a more restful sleep. This project was inspired by my friends who have seasonal affective disorder (SAD) who have purchased sunlamps to help regulate it. Many of these lights have functions that allow simulation of sunrises to allow the body to wake up naturally so that the user feels well rested.

Goal

The goal of this project is to emulate the sun setting and rising in an IoT device that allows users to easily begin their nighttime and morning routines. This is done primarily through IFTTT integration so that the user can start this process from the comfort of their bed.

Components

1 x Particle Photon

1 x Adafruit Neopixel Ring 24 x 5050 RGB 

1 x Phone with IFTTT application 

1 x Pushbutton

1 x Switch

Process

Having limited experience with prototyping electronics. I started small by creating a circuit that published an event when a push button was pressed. This proof of concept would allow me to utilize this as a shell to activate portions of code based on a button press.

Once this was completed, the next task was to interface with the NeoPixel RGB ring. Adafruit has an Arduino library available which has basic commands for the ring. This library along with the functions allowed me to program the gradual transition from yellow to red to simulate the sunset. 

After, a switch was added so that the user could turn off the NeoPixel without having to unplug the Particle Photon. This was challenging because the way in which the NeoPixel sends information to each of its RGB LEDs. After the signal specifying the color reaches the LED, it will stay that color until otherwise specified. If the NeoPixel loses power, it will not turn back on until the circuit is closed and a signal is sent to the LEDs. To fix this. The switch is set as an input so that when the switch turns off, the Photon tells the LEDs to display no color. When it turns on, it the NeoPixel will glow a bright yellow.

Once the colors of the sunrise and sunset fading patterns were refined, I then implemented IFTTT to turn activate these functions. This was done by creating a push button on the phone that sends an event to the Particle cloud. The Photon uses a subscribe command to look for the event name and execute the function once it is received. The entirety of the code for the Sunrise Lamp is found below.

Resources

NeoPixel Library and Code Examples by Adafruit

IFTTT

Code

#include "neopixel.h"
#include <math.h>

// IMPORTANT: Set pixel COUNT, PIN and TYPE
#define PIXEL_PIN D2
#define PIXEL_COUNT 24
#define PIXEL_TYPE WS2812

Adafruit_NeoPixel strip = Adafruit_NeoPixel(PIXEL_COUNT, PIXEL_PIN, PIXEL_TYPE);

int buttonPin = D0;
int toggle = 0;
int offPin = D1;
int offState = 1;
int isOn = TRUE;

int transitionTime = 5000; // Tranition Time in ms

void setup(){
  //Particle.variable("brightness", ledBrightness);
  strip.begin();
  strip.show(); // Initialize all pixels to 'off'

  pinMode( buttonPin , INPUT_PULLUP);
  pinMode( PIXEL_PIN, OUTPUT );
  pinMode( offPin , INPUT_PULLUP );
    // Have the Particle look for the event, then perform the handler method
  Particle.subscribe("initiateSunrise", myHandlerSunrise);
  Particle.subscribe("initiateSunset", myHandlerSunset);
  Particle.subscribe("turnOff", myHandlerOff);
}

void loop(){

  int buttonState = digitalRead(buttonPin);
  int offPinState = digitalRead(offPin);

    if( buttonState == LOW )
    {
      if( toggle == 0){
        colorWipe(strip.Color(255, 210, 25), 40);
        toggle = 1;
        Particle.publish("sunrise complete");
      }else{
          colorWipe(strip.Color(30, 0, 0), 40);
          toggle = 0;
          Particle.publish("sunset complete");
        }
    }else{
  }
}

void myHandlerSunset(const char *event, const char *data){
  rainbow(300);
}
void myHandlerSunrise(const char *event, const char *data){
  reverseRainbow(300);
}
void myHandlerOff(const char *event, const char *data){
  colorWipe(strip.Color(0, 0, 0), 25);
}

void rainbow(int wait) {
  uint16_t i, j;

  for(j=50; j<85; j++) {
    for(i=0; i<strip.numPixels(); i++) {
      strip.setPixelColor(i, Wheel((j) & 255));
    }
    strip.show();
    delay(wait);
  }
  Particle.publish("sunset complete");
}
void reverseRainbow(int wait) {
  uint16_t i, j;

  for(j=85; j>50; j--) {
    for(i=0; i<strip.numPixels(); i++) {
      strip.setPixelColor(i, Wheel((j) & 255));
    }
    strip.show();
    delay(wait);
  }
  Particle.publish("sunrise complete");
}
void colorWipe(uint32_t c, int wait) {
  for(uint16_t i=0; i<strip.numPixels(); i++) {
    strip.setPixelColor(i, c);
    strip.show();
    delay(wait);
  }
}
void colorAll(uint32_t c, uint8_t wait) {
  uint16_t i;

  for(i=0; i<strip.numPixels(); i++) {
    strip.setPixelColor(i, c);
  }
  strip.show();
  delay(wait);
}

/**
 * Scale a value returned from a trig function to a byte value.
 * [-1, +1] -> [0, 254]
 * Note that we ignore the possible value of 255, for efficiency,
 * and because nobody will be able to differentiate between the
 * brightness levels of 254 and 255.
 */
byte trigScale(float val) {
  val += 1.0; // move range to [0.0, 2.0]
  val *= 127.0; // move range to [0.0, 254.0]

  return int(val) & 255;
}

/**
 * Map an integer so that [0, striplength] -> [0, 2PI]
 */
float map2PI(int i) {
  return M_PI*2.0*float(i) / float(strip.numPixels());
}

// Input a value 0 to 255 to get a color value.
// The colours are a transition r - g - b - back to r.
uint32_t Wheel(byte WheelPos) {
  if(WheelPos < 85) {
   return strip.Color(WheelPos * 3, 255 - WheelPos * 3, 0);
  } else if(WheelPos < 170) {
   WheelPos -= 85;
   return strip.Color(255 - WheelPos * 3, 0, WheelPos * 3);
  } else {
   WheelPos -= 170;
   return strip.Color(0, WheelPos * 3, 255 - WheelPos * 3);
  }
}