-
Notifications
You must be signed in to change notification settings - Fork 144
Add ability to schedule when the kiln starts #59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
This adds the possibility to use a datepicker in the modal after clicking the start button to schedule when the kiln should start running by itself automatically. The timer is implemented in the backend and the start is triggered there so closing or refreshing the browser does not stop it. In the state when it's "waiting to start", the frontend state changes so that the glowing timer icon is now shown instead of the previously unused door icon. The state is also displayed as SCHEDULED and above it the info states when it's due to start: "Start at: ..."
000abc3 to
ebc4c89
Compare
|
Interesting. I've always done this through the api, using cron or at to start the job. |
|
@mburazin I will be happy to help you test if necessary. |
|
It's sad to see there's not been much movement on this. I plan to use this controller software and being able to schedule to fit with off peak electric times easily (my girlfriend needs to be able to use it) is going to be important to us. |
|
I have a branch that allows you to start a firing at a later date and time. You might wanna take a look at it.- - - - - - - - - - - - - -Mark Tilles11610 Killimore AvenuePorter Ranch, CA 91326(510) 707-2683On Oct 10, 2025, at 1:03 PM, Andy Barratt ***@***.***> wrote:apbarratt left a comment (jbruce12000/kiln-controller#59)
It's sad to see there's not been much movement on this. I plan to use this controller software and being able to schedule to fit with off peak electric times easily (my girlfriend needs to be able to use it) is going to be important to us.
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you were mentioned.Message ID: ***@***.***>
|
|
https://github.com/marktilles/kiln-controller-v4. In my file repository there are a ton more files than you will need, only half a dozen or so files are actually different from Jason’s.
- - - - - - - - - - - -Mark Tilles11610 Killimore AvenuePorter Ranch, CA 91326(510) 707-2683On Oct 10, 2025, at 3:36 PM, Mark Tilles ***@***.***> wrote:I have a branch that allows you to start a firing at a later date and time. You might wanna take a look at it.- - - - - - - - - - - - - -Mark Tilles11610 Killimore AvenuePorter Ranch, CA 91326(510) 707-2683On Oct 10, 2025, at 1:03 PM, Andy Barratt ***@***.***> wrote:apbarratt left a comment (jbruce12000/kiln-controller#59)
It's sad to see there's not been much movement on this. I plan to use this controller software and being able to schedule to fit with off peak electric times easily (my girlfriend needs to be able to use it) is going to be important to us.
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you were mentioned.Message ID: ***@***.***>
|
|
I have been using Mark',s version for at least 20 firings and it works
great. Thanks Mark.
Ron.
Anger is usually regrettable, kindness rarely.
…On Fri, Oct 10, 2025, 3:39 PM Mark Tilles ***@***.***> wrote:
*marktilles* left a comment (jbruce12000/kiln-controller#59)
<#59 (comment)>
https://github.com/marktilles/kiln-controller-v4- - - - - - - - - - - - -
-Mark Tilles11610 Killimore AvenuePorter Ranch, CA 91326(510) 707-2683On
Oct 10, 2025, at 3:36 PM, Mark Tilles ***@***.***> wrote:I have a branch
that allows you to start a firing at a later date and time. You might wanna
take a look at it.- - - - - - - - - - - - - -Mark Tilles11610 Killimore
AvenuePorter Ranch, CA 91326(510) 707-2683On Oct 10, 2025, at 1:03 PM, Andy
Barratt ***@***.***> wrote:apbarratt left a comment
(jbruce12000/kiln-controller#59)
It's sad to see there's not been much movement on this. I plan to use this
controller software and being able to schedule to fit with off peak
electric times easily (my girlfriend needs to be able to use it) is going
to be important to us.
—Reply to this email directly, view it on GitHub, or unsubscribe.You are
receiving this because you were mentioned.Message ID: ***@***.***>
—
Reply to this email directly, view it on GitHub
<#59 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AXA65G5IVHLBDZILRY4V4ND3XAYQXAVCNFSM6AAAAACI33OLKKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTGOJSGUYDGNJRGQ>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Thanks Ron! I’ve also updated my OS that runs on the Raspberry PI 2W, can upload an entire 8GB image somewhere and share it. |
@jbruce12000 I implemented this PR in cooperation with my friend @marktilles who had this idea for the delayed start of the kiln and has been in contact with you previously. What follows is the description of this implementation.
This PR adds the possibility to use a datepicker in the modal after clicking the start button to schedule when the kiln should start running by itself automatically followed by clicking the newly created appropriate button.
The timer is implemented in the backend and the start is triggered there so closing or refreshing the browser does not stop it.
When the kiln start gets scheduled, the frontend state changes so that the glowing timer icon is now shown instead of the
previously unused door icon (hope that's ok). The state is also displayed as SCHEDULED and above it the info states when it's due to start: "Start at: ..."
Now this state is shown whenever the page is opened in the browser until the kiln starts running. To cancel the scheduled run, one just needs to click the "Stop" button in the same way as when stopping the running kiln.
Would appreciate if you and anyone else could review and test this. Any feedback is welcome and I can make changes as needed.