Skip to content
This repository has been archived by the owner on Sep 26, 2018. It is now read-only.
/ hue-ci Public archive

Uses the Phillips Hue lighting system and an ESP8266 for continuous integration by changing the room's color depending on the build

Notifications You must be signed in to change notification settings

Zepheus/hue-ci

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Hue-ci

Changes your light bulb color depending on the build status of your project. Built on top of Google FireBase, ESP8266 and Phillips Hue. Currently, it only integrates with BitBucket Pipelines, but soon other CI platforms will follow.

Software setup

  1. Install Arduino 1.6.10
  2. Install Arduino ESP8266 core
  3. Download FirebaseArduino library
  4. Start Arduino
  5. Click Sketch > Include Library > Add .ZIP Library...
  6. Choose firebase-arduino-master.zip downloaded in step 3.

FireBase Configuration

  1. Create a new FireBase project.
  2. Create a new hierarchy build-status > YOUR_REPO > success with the value true or false.
  3. Configure the access mentioned below.
  4. Obtain a FireBase access key from the control panel.
{
  "rules": {
    "build-status":
    {
      ".read": true,
      ".write": "auth != null"
    },
    ".read": "auth != null",
    ".write": "auth != null"
  }
}

CI Configuration

Checkout following readme according to your platform:

Client Configuration

  1. Start Arduino
  2. Open hue-build-status.ino
  3. Replace WIFI_SSID and WIFI_PASSWORD with WiFi credentials
  4. Replace FIREBASE_HOST and FIREBASE_PATH according to YOUR_REPO and project ID from your FireBase configuration
  5. Replace HUB_IP and LAMP_ID according to your home Hue setup
  6. Obtain a USER_ID from your Hue API panel. For more info checkout Phillips developer docs.
  7. Select the board Board > ESP8266 Modules > NodeMCU 1.0
  8. Select the serial port Port > /dev/tty...
  9. Select the upload speed Upload Speed > 115200
  10. Click Sketch > Upload

About

Uses the Phillips Hue lighting system and an ESP8266 for continuous integration by changing the room's color depending on the build

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages