Search found 194 matches

by bbrally
Mon Feb 22, 2021 6:07 am
Forum: PC / Mac Apps
Topic: My version of the HMI builder
Replies: 104
Views: 1562704

Re: My version of the HMI builder

You are correct that my motivation is limited, but after 9 years of not being able to brew, my brewery is running again. Next weekend will be the first time brewing with this interface. The version I used 9 years ago looked and behaved nothing like this one. It will be good to finally use the progra...
by bbrally
Sun Sep 27, 2020 4:26 pm
Forum: General Discussion
Topic: Duplicate Steps
Replies: 3
Views: 11536

Re: Duplicate Steps

Copying requires a bit more manipulation. I will provide an example using the state/process labels used on the program when you first load the website, but before you load the BCS. (ie. process 5 state 4 is: "5 4") To copy a state within the same process ("5 4" to "5 5"...
by bbrally
Sat Sep 26, 2020 4:39 pm
Forum: General Discussion
Topic: Duplicate Steps
Replies: 3
Views: 11536

Re: Duplicate Steps

There is no native way to do this. I wrote a program to help, but it's big weakness is that any moving of states does not alter the exit conditions. All exit conditions affected by a move/copy/addition/deletion of a state will need to be manually adjusted. http://manipulator.from-ca.com/ Enter in yo...
by bbrally
Wed Apr 01, 2020 3:32 am
Forum: PC / Mac Apps
Topic: My version of the HMI builder
Replies: 104
Views: 1562704

Re: My version of the HMI builder

21 months since my last update. I actually had this mostly finished about a year ago, but it took a quarantine to finally finish it. Most of the updates this time were for a friend to make it more usable for him. Circumstances have prevented me from brewing for years, and many more brew-less years a...
by bbrally
Tue Dec 10, 2019 12:58 pm
Forum: Roadmap and Feature Request
Topic: Din to activate a pause
Replies: 3
Views: 13809

Re: Din to activate a pause

I want the suspend the timer(s) and close all outputs, just as the "pause" button on the BCS interface does. Pressing the "resume" button then continues the timers(s) and opens the relevant outputs of the state the pause took place in.
by bbrally
Sun Dec 08, 2019 5:40 pm
Forum: Roadmap and Feature Request
Topic: Din to activate a pause
Replies: 3
Views: 13809

Din to activate a pause

I'm wiring a control panel for a buddy who does not want to use any interface other than the control panel.

But he would like a pause button. I don't believe there's anyway to program a pause from a din.

Is this something that could be added to a future update?
by bbrally
Sat Mar 02, 2019 4:22 pm
Forum: General Discussion
Topic: Thermocouple for Coffee Roaster?
Replies: 2
Views: 11255

Re: Thermocouple for Coffee Roaster?

The BCS won't be able to monitor a Coffee Roaster.

Thermocouples aren't compatible with the BCS and thermisters, which are, will fail under the high heat.
by bbrally
Mon Feb 18, 2019 8:28 am
Forum: General Discussion
Topic: BCS API Help
Replies: 5
Views: 14388

Re: BCS API Help

Try entering "http://192.168.1.234/api/process/4/timer" into your browser, this will allow you to see what the BCS is giving you for values. When I do this it returns an array of objects, not just the timer values. Try this: $('#timer0').html(value[0].value); Doing this would return the na...
by bbrally
Sat Feb 16, 2019 5:49 am
Forum: General Discussion
Topic: BCS API Help
Replies: 5
Views: 14388

Re: BCS API Help

Here's some code I wrote long ago to help someone else out who needed to get temps. There are lots of ways to do this, this only one: // run our javascript once the page has loaded $(document).ready(function () { getBCSTempWithJqueryGet('http://192.168.1.218/'); }); function getBCSTempWithJqueryGet(...