Perfect!
Have fun and enjoy my addon!
Hi Alessandro,
Great Job for the fan control! Is it also possible to add fan.set_percentage? (Fan speed in %)
Just like brightness, temperature and position control with these domains.
Many thanks!
This is something I was expecting
This last version includes a huge amount of changes, and took me about a month of test and bugfix.
I decide to add this function in the future, but now I need to take a little break
No worries!
I am searching for a binary/boolean variable that’s set while a schedule is turned on and use this in scripts to steer behavior (ignore turn-off events while simple scheduler has it turned on) . There’s none (yet )
You wrote that I need to create an integration (assume automation) for this. Above you made a point to fire an automation on turn-on (automations are triggered by SimpleScheduler on “Turn on”, not by turn-off.)
Hence, if I get it right and want a binary variable for every schedule then I gotta break every schedule into two schedules, each kicking on turn-on a turn-on/turn-off automation , loosing the elegance.
Is there a more elegant way, now or in the future, e.g.simple scheduler setting a boolean like input_boolean.simplescheduler.<Name>
for every schedule?
This could make SimpleScheduler’s timing accessible throughout HA and keep the elegance.
It is not possible at the moment. I’m working on that
You assumed it wrong. I have to write an integration (or a custom_component if you prefer) that “talks” to the addon.
Because addons (not just simplescheduler) are completely separated from HA.
I’m a complete newb to HA so please bear with me. I’m having trouble finding this Add-on. I look under Add-ons, Click Add-On Store, and see Official add-ons and a second section for Home Assistant Community Add-ons. I select the three dots at the top of screen and select Repositories. I get a pop-up box that says: Manage add-on repositories, Home Assistant Community Add-ons Franck Nijhof [email protected]https://addons.community, with a line below that says Add. I see no “refresh” as mentioned in the instructions, only a close option at the bottom of the box. I don’t know what to “add” to get to a repository with this scheduler in it. What am I doing wrong?
You miss the first line of the instructions :
You can add the URL of this page in your “add-on store” as a new repository
In the line you see, you have to write the URL and then click “ADD”
Then close. Back in the “Add-on store” do a refresh and it will appear:
I swear I only read that about 50 times and still missed it. ; ) lol
Thanks for your help. Got it now. Nice job btw…
refering to above comment Solved (I guess)
Usually SimpleScheduler refers to a device, e.g. a switch. I let it refer to a [dummy] automation instead. I then use the state change of this [dummy] automation to trigger any automation with conditions as I like.
Thereby I get
- schedule on one line (on/off times on the same schedule item)
- full control of the event, e.g. prevent simplescheduler from switching off a device if some condition is met (e.g. do not switch off morning’s bathroom heater if there’s already enough solar energy to keep it running)
- and as a freeby, I can add the [dummy] automation to the dashboard and manually override the scheduler.
Version 0.50 is out!
- New feature: Retry unavailable entities
- New feature: enable/disable schedulers in frontend (through MQTT)
- Improvement: Set fan percent speed
- Fixed bug in sorting (#61)
- Log improvement
- Several bugfixes
One of the most requested features was to enable/disable the scheduler from the frontend or in automations.
I solve this using MQTT.
Maybe if you don’t know what MQTT is, could look tricky… so I create a little guide to help you:
Thank you for your efforts! The Set fan percent speed works great!
Thank you for this… I bought you a couple beers LOL Enjoy!
Great addon! I’m changing all my weird automations to this, because now they’re really readable, and manageable.
One thing that you can add support is to vacuums. It would be nice to migrate also the weekly cleaning to this addon!
Thank you for your suggestion.
To be honest, I wasn’t aware of vacuum before your post
I google it and I think this can be done. Will try to add them in the next release.
PS: in the meantime you can create a script to start and stop the vacuum and call the script from the addon
Wasn’t really sure but is it possible to support light color? Ie blue, red, etc.
If not no big deal, still love this!!!
Thank you!
Could be…
How would you write the color in the schedule? Do you have a suggestion?
That’s a good question and honestly have no answer for. It could be a text window allowing you to write in the color or a tag like you’re already using
ie B>80 for brightness
+30 for offset
Perhaps C=252
Problem is it would be extensive code because different things use different ‘colors’…
Html colors
Rgb colors
Hex colors
Hue colors
My particular instance uses hue.
So all in all I certainly wouldn’t ask for anything like that. Was just wondering if it was possible now to do it If not no big deal. After writing simple modules for MM I know what it’s like when people ask you to rewrite something for just their needs… so again if it’s not possible now I have no objections and am not asking you to rewrite or spend extensive time making this happen It’s already a great addition to HA! Thank you!
@cowboysdude you actually get the point.
This was already on my mind because I actually needed it.
I know how to do it with code, what I miss is the syntax to use without making it too complicated and/or unreadable.
I solved it by calling a script, for now.
So if anyone have some nice idea, fell free to suggest it here!
You could just let them call the color they want from the attribute like this:
c=#ffffff
c=235
etc…
Yeah changed my answer because after going through different entities some have a ‘Color’ attribute but things like WLED do not show attributes but instead have an entity called for example: select.wled_fun_color_palette
…
My best guess here is don’t do what I do… don’t overthink because then we try to over complicate things LOL That’s the truth… I’m a teacher and by education I can write js and php but I’m not expert and was never trained to do this… I just learned bits and pieces on my own…