[OBSOLETE] Garden Hue: New smartapp to change hue color on a cycle or random, sunset to sunrise

Will this let me schedule when the app will fire? so during my music mode it will fire, and when I change the mode back to home it will turn off?

Yup. Can’t recall if it runs directly by mode? I f not… it can be run by a virtual switch that could be toggled by mode.

Created from code in IDE

http://docs.smartthings.com/en/latest/tools-and-ide/index.html

I believe you hit up the My Smartapps page, then create new, then from code, copy and paste from the RAW code from the github link in the first post…

I know someone has written how to do this better than I, trying to find that link…

Thanks for the inputs

Could I put in a request to have a setting to turn off the lights be Sunrise offset OR a set time?

I would like to have mine turn off before midnight, without having to change to offset ever 60 days

Where can I find the latest version of this app?

latest version is in this thread in the repository

I am only able too see Version 1.0

Keep reading it, it say v1 at the top but the change log is listed right below it

I did a quick mod that allows you to set what the colors are that you want. See code below.

I only use random mode so if you want the colors to go in a specific order like Red, Indigo, White, Orange, you will need to modify the code for that, since I only care about taking certain colors our of the list. But if you set it to not random it will just go to the next color in the list the way they are listed on the screen, IE Red -> Brick Red -> Safety Orange … (It will only go thru the colors you have set to enabled).

https://drive.google.com/open?id=0B0QMwHXskFfBc2Zzem82dW9zNzA

Summary

/**

  • Garden Hue v 1.0
  • by lg. kahn
  • This SmartApp will turn on if enabled after sunset and run to
  • sunrise… It will change the hue color of your garden hue every xx
  • minutes based on a schedule.
  • Version 1.0: April 28, 2016 - Initial release
  • Version 2.0: add app name to push messages.
  • also dont schedule anything if disabled is set.
  • clean up and remove some debugging.
  • add run every 5 minute option.
  • Turn off all hues when saving app.
  • Version 2.1:
  • add a switch/virtual switch option, which if selected the enable/disable of the app will follow.
  • The latest version of this file can be found at
  • https://github.com/lgkapps/SmartThingsPublic/gardenhue

*/

definition(
name: “Garden Hue”,
namespace: “lgkapps”,
author: “lgkahn kahn-st@lgk.com”,
description: “Change hue color of lights based on schedule sunset to sunrise.”,
category: “Convenience”,
iconUrl: “http://mail.lgk.com/huetree1.png”,
iconX2Url:“http://mail.lgk.com/huetree2.png”,
iconX3Url: “http://mail.lgk.com/huetree2.png”,
)

preferences {

section("Choose hue lights you wish to control?") {
        input "hues", "capability.colorControl", title: "Which Color Changing Bulbs?", multiple:true, required: true
    	input "brightnessLevel", "number", title: "Brightness Level (1-100)?", required:false, defaultValue:100 //Select brightness
}

section("Choose cycle time between color changes? ") {
        input "cycletime", "enum", title: "Cycle time in minutes?" , options: [
            "5",
			"10", 
			"15", 
			"30", 
			"1 hour", 
			"3 hours"
		], required: true, defaultValue: "30"
}

 section( "Turn Off How Manu Hours before Sunrise?") {
    input "offset", "enum", title: "Turn Off How many hours before sunrise?",options: ["0", "-1", "-2", "-3", "-4", "-5"],
    required: true, defaultValue: "0"
 }
 
 section( "Enabled/Disabled" ) {
    input "enabled","bool", title: "Enabled?", required: true, defaultValue: true
    input "enableswitch", "capability.switch", title: "Optional: Do you have a switch/virtual switch which the application enable/disable functionality should follow? If you do not want this feature leave blank.", multiple:false, required: false
    input "randomMode","bool", title: "Enable Random Mode?", required: true, defaultValue: false
 }

 section( "Colors" ) {
    input "color_Red","bool", title: "Red", required: true, defaultValue: true
    input "color_BrickRed","bool", title: "Brick Red", required: true, defaultValue: true
    input "color_SafetyOrange","bool", title: "Safety Orange", required: true, defaultValue: true
    input "color_Orange","bool", title: "Orange", required: true, defaultValue: true
    input "color_Amber","bool", title: "Amber", required: true, defaultValue: true
    input "color_Yellow","bool", title: "Yellow", required: true, defaultValue: true
    input "color_Green","bool", title: "Green", required: true, defaultValue: true
    input "color_Turquoise","bool", title: "Turquoise", required: true, defaultValue: true
    input "color_Aqua","bool", title: "Aqua", required: true, defaultValue: true
    input "color_NavyBlue","bool", title: "Navy Blue", required: true, defaultValue: true
    input "color_Blue","bool", title: "Blue", required: true, defaultValue: true
    input "color_Indigo","bool", title: "Indigo", required: true, defaultValue: true
    input "color_Purple","bool", title: "Purple", required: true, defaultValue: true
    input "color_Pink","bool", title: "Pink", required: true, defaultValue: true
    input "color_Rasberry","bool", title: "Rasberry", required: true, defaultValue: true
    input "color_White","bool", title: "White", required: true, defaultValue: true
    
 }

 section( "Notifications" ) {
    input("recipients", "contact", title: "Send notifications to") {
        input "sendPushMessage", "enum", title: "Send a push notification?", options: ["Yes", "No"], required: false
        input "phone1", "phone", title: "Send a Text Message?", required: false
}

}
}

def installed() {
unsubscribe()
unschedule()

if (hues)
{
 TurnOff()
}

if (settings.enabled == true)
{
  initialize()
}  

// do event listening on switch whether enabled or not
if ((enableswitch) && (hues))
{
subscribe(enableswitch,“switch”,EnableSwitchHandler)
}
}

def updated() {

unsubscribe()
unschedule()

if (hues)
{
// must always turn off here even if disabled, because this gets called when the switch disables and turns stuff off.
TurnOffAlways()
}

if (settings.enabled == true)
{
initialize()
}

// do event listening on switch whether enabled or not
if ((enableswitch) && (hues))
{
subscribe(enableswitch,“switch”,EnableSwitchHandler)
}

if (hues)
{
    def currSwitches = hues.currentSwitch    
    def onHues = currSwitches.findAll { switchVal -> switchVal == "on" ? true : false }
    def numberon = onHues.size();
    def onstr = numberon.toString() 
    log.debug "in updated on = $onstr"  
}

}

def EnableSwitchHandler(evt)
{
log.debug "In Switch Handler: Switch changed state to: ${evt.value}"
if (evt.value == “on”)
{
log.debug "Enabling App!"
settings.enabled = true
updated()
// updated turns off so need to turn back on when switch tripped… but also need to renable scheduling.
TurnOn()
}
else
{
log.debug "Disabling App!"
settings.enabled = false
updated()
}
}

private def initialize() {
log.debug(" in initialize() for $app.label with settings: ${settings}")

if(hues) 
{
    subscribe(hues, "switch.on", changeHandler)    
    subscribe(location, "sunset", SunsetHandler)
    subscribe(location, "sunrise", SunriseHandler)

// uses the run every instead of direct schedule to take load off of fixed times on hub
switch (settings.cycletime)
{
case “5”:
log.debug "switching color every 5 minutes."
runEvery5Minutes(changeHandler)
break;

 case "10":
 log.debug "switching color every 10 minutes."
 runEvery10Minutes(changeHandler)
 break;

 case "15":
 log.debug "switching color every 15 minutes."
 runEvery15Minutes(changeHandler)
 break;

 case "30":
 log.debug "switching color every 30 minutes."
 runEvery30Minutes(changeHandler)
 break;

 case "1 hour":
 log.debug "switching color every hour."
 runEvery1Hour(changeHandler)
 break;

 case  "3 hours":
 log.debug "switching color every 3 hours"
 runEvery3Hours(changeHandler)
 break;
  
 default:
 log.debug "switching color every 30 minutes."
 runEvery30Minutes(changeHandler)
 break;
 
}

// schedule(“0 */15 * * * ?”, changeHandler)
// if selectd app it will run
subscribe(app,changeHandler)

state.nextOnTime = 0
state.nextOffTime = 0

// subscribe(location, “sunsetTime”, scheduleNextSunset)
// sunset handled automaticall need next sunrise to handle offset
subscribe(location, “sunriseTime”, scheduleNextSunrise)
scheduleNextSunrise()
// rather than schedule a cron entry, fire a status update a little bit in the future recursively
// scheduleNext()
state.currentColor = “None”

}

}

def SunriseHandler(evt)
{
TurnOff()
scheduleNextSunrise()
}

def SunsetHandler(evt)
{
TurnOn()
scheduleNextSunrise()
}

def TurnOff()
{
//log.debug “In turn off"
if (settings.enabled == true)
{
mysend(”$app.label: Turning Off!")
}
hues.off()
}

def TurnOffAlways()
{
mysend("$app.label: Turning Off!")
hues.off()
}

def TurnOn()
{
// log.debug “In turn on"
if (settings.enabled == true)
{
mysend(”$app.label: Turning On!")
hues.on()
}
}

def scheduleNextSunrise(evt) {

log.debug “In schedule next sunrise”

def int sunriseoffset = settings.offset.toInteger()
log.debug "got sunrise offset = $sunriseoffset"

// get sunrise and sunset times
def sunRiseSet = getSunriseAndSunset()
def sunriseTime = sunRiseSet.sunrise
def sunsetTime = sunRiseSet.sunset
    
log.debug "sunrise time ${sunriseTime}"
log.debug "sunset time ${sunsetTime}"

//get the Date value for the string
//def sunriseTime = Date.parse("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'", sunriseTime)

// sunrise returns today so double check we are not getting todays time but tomarrow
// if we are before sunset time we are too early

// bug in get sunrise time somethigs shows todays even though we are passed it.. sometimes
// shows the next one.. Think it has to do with timezone offset.. so compare to local time to see
// which case we have and if we need to add 24 hours or not

 def currentTime = new Date(now())
 //log.debug "current time = $currentTime, sunrisetime = $sunriseTime, sunsettime = $sunsetTime"
 
 // if current time is greater than sunsirse we are today no tomorrow so add 24 hours.
 if(currentTime.time > sunriseTime.time) {
    log.debug "Adding a day as sunrise time is still today!"
    sunriseTime = new Date(sunriseTime.time + (24 * 60 * 60 * 1000))
}

//calculate the offset
def timeBeforeSunrise = new Date(sunriseTime.time + (sunriseoffset * 60 * 60 * 1000))
log.debug "Scheduling for: $timeBeforeSunrise (sunrise is $sunriseTime)"

//schedule this to run one time
if (state.nextOffTime != timeBeforeSunrise)
{
  log.debug "Scheduling it!"
  runOnce(timeBeforeSunrise, TurnOff)
  state.nextOffTime = timeBeforeSunrise
}

}

def changeHandler(evt) {

log.debug "in change handler"
// only do stuff if either switch is on (turns off at sunrise) or turned on manually
if (hues)
{
	 def currSwitches = hues.currentSwitch
     def onHues = currSwitches.findAll { switchVal -> switchVal == "on" ? true : false }
     def numberon = onHues.size();
     def onstr = numberon.toString() 
     
   log.debug "found $onstr that were on!"

if ((onHues.size() > 0) && (settings.enabled == true))
{
  def newColor = ""
  
  def colorArray =[]
    //def colorArray = ["Red","Brick Red","Safety Orange","Orange","Amber","Yellow","Green","Turquoise","Aqua","Navy Blue","Blue","Indigo","Purple","Pink","Rasberry","White"]
         
    if(settings.color_Red)
    {
    	colorArray.add("Red")
    }
    
    if(settings.color_BrickRed)
    {
    	colorArray.add("Brick Red")
    }
    
    if(settings.color_SafetyOrange)
    {
    	colorArray.add("Safety Orange")
    }
    
    if(settings.color_Orange)
    {
    	colorArray.add("Orange")
    }
    
    if(settings.color_Amber)
    {
    	colorArray.add("Amber")
    }
    
    if(settings.color_Yellow)
    {
    	colorArray.add("Yellow")
    }
    
    if(settings.color_Green)
    {
    	colorArray.add("Green")
    }
    
    if(settings.color_Turquoise)
    {
    	colorArray.add("Turquoise")
    }
    
    if(settings.color_Aqua)
    {
    	colorArray.add("Aqua")
    }
    
    if(settings.color_NavyBlue)
    {
    	colorArray.add("Navy Blue")
    }
    
    if(settings.color_Blue)
    {
    	colorArray.add("Blue")
    }
    
    if(settings.color_Indigo)
    {
    	colorArray.add("Indigo")
    }
    
    if(settings.color_Purple)
    {
    	colorArray.add("Purple")
    }
    
    if(settings.color_Pink)
    {
    	colorArray.add("Pink")
    }
    
    if(settings.color_Rasberry)
    {
    	colorArray.add("Rasberry")
    }
    
    if(settings.color_White)
    {
    	colorArray.add("White")
    }  
  
  def listSize = colorArray.size()
  
  if (settings.randomMode == true)
   {
    def int nextValue = new Random().nextInt(listSize)                 
         
    log.debug "Random Number = $nextValue"
    newColor = colorArray[nextValue]    
   }
   
  else
  
  { // not random
  
  def currentColor = state.currentColor
  
log.debug " in changeHandler got current color = $currentColor"

	def currentIndex = colorArray.indexOf(currentColor)
    
    if((currentIndex == listSize) || (currentIndex == -1))
    {
    newColor = colorArray[0]
    }else
    {
    newColor = colorArray[currentIndex+1]
    }

/*
switch(currentColor) {

	case "Red":
		newColor="Brick Red"
		break;
	case "Brick Red":
		newColor = "Safety Orange"
		break;
	case "Safety Orange":
		newColor = "Orange"
		break;
	case "Orange":
		newColor = "Amber"
		break;
	case "Amber":
		newColor = "Yellow"
		break;
	case "Yellow":
		newColor = "Green"
		break;
	case "Green":
		newColor = "Turquoise"
		break;
    case "Turquoise":
		newColor = "Aqua"
		break;
	case "Aqua":
		newColor = "Navy Blue"
		break;
    case "Navy Blue":
		newColor = "Blue"
		break;
	case "Blue":
		newColor = "Indigo"
		break;
	case "Indigo":
		newColor = "Purple"
		break;
    case "Purple":
		newColor = "Pink"
		break;
	case "Pink":
		newColor = "Rasberry"
		break;
    case "Rasberry":
		newColor = "White"
		break;
    case "White":
		newColor = "Red"
		break;
    default:
    	//log.debug "in default"
         newColor = "Red"
		break;
        
}*/
} // end random or not

  log.debug "After Check new color = $newColor"

  hues.on()
  sendcolor(newColor)
  }

}
}

def sendcolor(color)
{
log.debug “In send color”
//Initialize the hue and saturation
def hueColor = 0
def saturation = 100

//Use the user specified brightness level. If they exceeded the min or max values, overwrite the brightness with the actual min/max
if (brightnessLevel<1) {
	brightnessLevel=1
}
else if (brightnessLevel>100) {
	brightnessLevel=100
}

//Set the hue and saturation for the specified color.
switch(color) {
	case "White":
		hueColor = 0
		saturation = 0
		break;
	case "Daylight":
		hueColor = 53
		saturation = 91
		break;
	case "Soft White":
		hueColor = 23
		saturation = 56
		break;
	case "Warm White":
		hueColor = 20
		saturation = 80 
		break;
    case "Navy Blue":
        hueColor = 61
        break;
	case "Blue":
		hueColor = 65
		break;
	case "Green":
		hueColor = 33
		break;
    case "Turquoise":
    	hueColor = 47
        break;
    case "Aqua":
        hueColor = 50
        break;
    case "Amber":
        hueColor = 13
        break;
	case "Yellow":
		//hueColor = 25
        hueColor = 17
		break; 
    case "Safety Orange":
        hueColor = 7
        break;
	case "Orange":
		hueColor = 10
		break;
    case "Indigo":
        hueColor = 73
        break;
	case "Purple":
		hueColor = 82
		saturation = 100
		break;
	case "Pink":
		hueColor = 90.78
		saturation = 67.84
		break;
    case "Rasberry":
        hueColor = 94
        break;
	case "Red":
		hueColor = 0
		break;
     case "Brick Red":
        hueColor = 4
        break;                
}

//Change the color of the light
def newValue = [hue: hueColor, saturation: saturation, level: brightnessLevel]  
hues*.setColor(newValue)
    state.currentColor = color
    mysend("$app.label: Setting Color = $color")
    log.debug "$app.label: Setting Color = $color"

}

private mysend(msg) {

if (location.contactBookEnabled) {
    log.debug("sending notifications to: ${recipients?.size()}")
    sendNotificationToContacts(msg, recipients)
}
else {
    if (sendPushMessage != "No") {
        //log.debug("sending push message")
        sendPush(msg)
    }

    if (phone1) {
        //log.debug("sending text message")
        sendSms(phone1, msg)
    }
}

// log.debug msg
}

I am having the same issue.

Turn off the push notification in the settings

Does this only work with hue or does it work with osram lightify as well?

Should work with any colour changin bulb, I use it with Lifx

How do I download it? I am new to all this user community stuff and don’t know how to do anything

Afraid so.

Did you read the thread …it was written for lightify

The link to the code is in the first post of this thread.

If you haven’t used custom code with SmartThings before, the following will explain the process. It’s pretty straightforward, you’re going to copy the code from the author and then paste it into your own account. :sunglasses:

3 Likes

@Lgkahn, Can this be run not on a schedule (sunset to sunrise), but only when a switch is on or off? If so how?

I’m assuming by not enabling it (leaving enabled unchecked) and then selecting a switch? Would it then only run when switch is on regardless of time of day, and turn off when switch is off?

I’d like for it to change colors every minute. Is this how it to do it?

 case "1":
 log.debug "switching color every 1 minute."
 schedule("0 0/1 * 1/1 * ? *", changeHandler)
 break;